diff options
author | Emilia Kasper <emilia@openssl.org> | 2015-04-27 15:58:39 +0200 |
---|---|---|
committer | Emilia Kasper <emilia@openssl.org> | 2015-04-27 16:17:27 +0200 |
commit | 2f5997b7b9dc6b4206780ecadcb3de2eac88216e (patch) | |
tree | 5c55222be6858dc18cc092dc8f7a7a8e718d4da9 /apps | |
parent | Fix the check of test apps in util/mk1mf.pl (diff) | |
download | openssl-2f5997b7b9dc6b4206780ecadcb3de2eac88216e.tar.xz openssl-2f5997b7b9dc6b4206780ecadcb3de2eac88216e.zip |
Fix Wmaybe-uninitialized: initialize variable
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/s_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |