Fix memory leak.
authorDr. Stephen Henson <steve@openssl.org>
Tue, 3 Jul 2012 16:37:50 +0000 (16:37 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 3 Jul 2012 16:37:50 +0000 (16:37 +0000)
Always perform nexproto callback argument initialisation in s_server
otherwise we use uninitialised data if -nocert is specified.

apps/s_client.c
apps/s_server.c

index a8383626faf92d2d65d3116b2f0e052823aba01d..ef798e8c08457665b8d8a3d3f8e4bcafb3cc9f29 100644 (file)
@@ -1965,6 +1965,10 @@ end:
                        print_stuff(bio_c_out,con,1);
                SSL_free(con);
                }
+#if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
+       if (next_proto.data)
+               OPENSSL_free(next_proto.data);
+#endif
        if (ctx != NULL) SSL_CTX_free(ctx);
        if (cert)
                X509_free(cert);
index 8ea916d6e164d92f5a52483514ec5815a56ac11d..6be2b628a793b6fa1efa1475d8b4c2cce598b22e 100644 (file)
@@ -1518,25 +1518,24 @@ bad:
                                goto end;
                                }
                        }
-
-# ifndef OPENSSL_NO_NEXTPROTONEG
-               if (next_proto_neg_in)
-                       {
-                       unsigned short len;
-                       next_proto.data = next_protos_parse(&len,
-                               next_proto_neg_in);
-                       if (next_proto.data == NULL)
-                               goto end;
-                       next_proto.len = len;
-                       }
-               else
-                       {
-                       next_proto.data = NULL;
-                       }
-# endif
 #endif /* OPENSSL_NO_TLSEXT */
                }
 
+#if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG) 
+       if (next_proto_neg_in)
+               {
+               unsigned short len;
+               next_proto.data = next_protos_parse(&len, next_proto_neg_in);
+               if (next_proto.data == NULL)
+                       goto end;
+               next_proto.len = len;
+               }
+       else
+               {
+               next_proto.data = NULL;
+               }
+#endif
+
 
        if (s_dcert_file)
                {