summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-02-16 14:47:26 +0000
committerMatt Caswell <matt@openssl.org>2017-02-16 17:14:57 +0000
commitd605fc3a0ce4103ca6660904795bf1209cdb55b7 (patch)
tree77786b6a480b0ce768e74ab49d0eb3291edb9d9c /test
parent86de658a84a379ad9e7b8b93bb66adb8e218f4c8 (diff)
Fix a mem leak in ssl_test_ctx.c
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2650)
Diffstat (limited to 'test')
-rw-r--r--test/ssl_test_ctx.c1
1 files changed, 1 insertions, 0 deletions
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)