From d605fc3a0ce4103ca6660904795bf1209cdb55b7 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 16 Feb 2017 14:47:26 +0000 Subject: [PATCH] Fix a mem leak in ssl_test_ctx.c Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/2650) --- 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 1f3495fa5c..c5b9a3ebe6 100644 --- a/test/ssl_test_ctx.c +++ b/test/ssl_test_ctx.c @@ -585,6 +585,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) -- 2.25.1