[openssl-commits] [openssl] master update
Emilia Kasper
emilia at openssl.org
Mon Apr 27 14:17:56 UTC 2015
The branch master has been updated
via 2f5997b7b9dc6b4206780ecadcb3de2eac88216e (commit)
from 9e842a5292d035bf3dfa4bc70dd3270b104bdf57 (commit)
- Log -----------------------------------------------------------------
commit 2f5997b7b9dc6b4206780ecadcb3de2eac88216e
Author: Emilia Kasper <emilia at openssl.org>
Date: Mon Apr 27 15:58:39 2015 +0200
Fix Wmaybe-uninitialized: initialize variable
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/s_client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/s_client.c b/apps/s_client.c
index 13191a0..431a106 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -654,7 +654,7 @@ int s_client_main(int argc, char **argv)
NULL;
char *passarg = NULL, *pass = NULL, *vfyCApath = NULL, *vfyCAfile = NULL;
char *sess_in = NULL, *sess_out = NULL, *crl_file = NULL, *p;
- char *jpake_secret = NULL, *xmpphost;
+ char *jpake_secret = NULL, *xmpphost = NULL;
const char *unix_path = NULL;
const char *ehlo = "mail.example.com";
struct sockaddr peer;
More information about the openssl-commits
mailing list