From 9a283668a6a98ea060c6bd33cefaee5759a6256f Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 24 Jun 2024 15:17:38 +0100 Subject: [PATCH] fixup! Add explicit testing of ALN and NPN in sslapitest --- test/sslapitest.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/sslapitest.c b/test/sslapitest.c index 01bf75b43bfc3..3257057f48a74 100644 --- a/test/sslapitest.c +++ b/test/sslapitest.c @@ -11211,6 +11211,8 @@ static int test_npn(int idx) end: SSL_free(serverssl); SSL_free(clientssl); + SSL_CTX_free(sctx); + SSL_CTX_free(cctx); return testresult; } @@ -11312,6 +11314,8 @@ static int test_alpn(int idx) end: SSL_free(serverssl); SSL_free(clientssl); + SSL_CTX_free(sctx); + SSL_CTX_free(cctx); return testresult; }