Fix Wmaybe-uninitialized: initialize variable

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Emilia Kasper 2015-04-27 15:58:39 +02:00
parent 9e842a5292
commit 2f5997b7b9

View File

@ -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;