[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Matt Caswell matt at openssl.org
Thu Feb 16 17:23:32 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  d52c9b58a6e6c6dba62221b469e1576fe26b3c20 (commit)
      from  4b74b511131cf6703c82c25656bac7058d8ebe2f (commit)


- Log -----------------------------------------------------------------
commit d52c9b58a6e6c6dba62221b469e1576fe26b3c20
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Feb 16 14:47:26 2017 +0000

    Fix a mem leak in ssl_test_ctx.c
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/2650)
    (cherry picked from commit d605fc3a0ce4103ca6660904795bf1209cdb55b7)

-----------------------------------------------------------------------

Summary of changes:
 test/ssl_test_ctx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/ssl_test_ctx.c b/test/ssl_test_ctx.c
index c21decf..28ee5c7 100644
--- a/test/ssl_test_ctx.c
+++ b/test/ssl_test_ctx.c
@@ -507,6 +507,7 @@ static void ssl_test_extra_conf_free_data(SSL_TEST_EXTRA_CONF *conf)
     OPENSSL_free(conf->client.alpn_protocols);
     OPENSSL_free(conf->server.alpn_protocols);
     OPENSSL_free(conf->server2.alpn_protocols);
+    OPENSSL_free(conf->client.reneg_ciphers);
 }
 
 static void ssl_test_ctx_free_extra_data(SSL_TEST_CTX *ctx)


More information about the openssl-commits mailing list