From 661f6b04a2a174dcdb7829077b7e3505d47f61f8 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Tue, 21 Jan 2025 14:00:10 -0700 Subject: [PATCH] fix for macro guard on free of clSuites --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 75e6334f4..e9c0c50ec 100644 --- a/src/internal.c +++ b/src/internal.c @@ -38207,7 +38207,7 @@ static int DoSessionTicket(WOLFSSL* ssl, const byte* input, word32* inOutIdx, #endif out: -#if defined(WOLFSSL_SMALL_STACK) && !defined(OPENSSL_ALL) +#if defined(WOLFSSL_SMALL_STACK) && !defined(OPENSSL_EXTRA) XFREE(clSuites, ssl->heap, DYNAMIC_TYPE_SUITES); #endif WOLFSSL_LEAVE("DoClientHello", ret);