From 6316e26bdcbf7671c33786db58556de1afb0b85f Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Thu, 18 Aug 2022 10:24:18 +0200 Subject: [PATCH] Adding the forgotten wolfSSL_CTX_free() at the end of the new test_quic_key_share case. --- tests/quic.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/quic.c b/tests/quic.c index 5e43c30cf..a6d6a0dcd 100644 --- a/tests/quic.c +++ b/tests/quic.c @@ -1178,6 +1178,8 @@ static int test_quic_key_share(int verbose) { QuicTestContext_free(&tclient); QuicTestContext_free(&tserver); + wolfSSL_CTX_free(ctx_c); + wolfSSL_CTX_free(ctx_s); printf(" test_quic_key_share: %s\n", (ret == 0)? passed : failed); return ret; }