]> granicus.if.org Git - openssl/commitdiff
Fix a warning about an uninit var
authorMatt Caswell <matt@openssl.org>
Thu, 24 Nov 2016 09:19:04 +0000 (09:19 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 24 Nov 2016 18:02:43 +0000 (18:02 +0000)
Reviewed-by: Richard Levitte <levitte@openssl.org>
test/clienthellotest.c

index 61e81c3833a1a0f2e59164e568786a051b3b479f..718b582ed5bc332e3a1ed500f59d780d1b14d605 100644 (file)
@@ -32,7 +32,7 @@
 int main(int argc, char *argv[])
 {
     SSL_CTX *ctx;
-    SSL *con;
+    SSL *con = NULL;
     BIO *rbio;
     BIO *wbio;
     BIO *err;