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)
This commit is contained in:
Matt Caswell 2017-02-16 14:47:26 +00:00
parent 86de658a84
commit d605fc3a0c
1 changed files with 1 additions and 0 deletions

View File

@ -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)