From: Emilia Kasper Date: Mon, 27 Apr 2015 13:58:39 +0000 (+0200) Subject: Fix Wmaybe-uninitialized: initialize variable X-Git-Tag: OpenSSL_1_1_0-pre1~1265 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f5997b7b9dc6b4206780ecadcb3de2eac88216e;p=openssl Fix Wmaybe-uninitialized: initialize variable Reviewed-by: Richard Levitte --- diff --git a/apps/s_client.c b/apps/s_client.c index 13191a0adb..431a1069d7 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;