From c7a6b1792242242537ba5dad6f89c645e9d7a496 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Mon, 19 Jul 2021 16:30:51 +0200 Subject: [PATCH] Need to free ecc cache --- tests/api.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/api.c b/tests/api.c index cdecf64f4..86e3d4d57 100644 --- a/tests/api.c +++ b/tests/api.c @@ -35259,6 +35259,10 @@ static void test_wolfSSL_BIO_accept(void) SSL_free(sslServer); SSL_CTX_free(ctx); +#ifdef FP_ECC + wc_ecc_fp_free(); +#endif + printf(resultFmt, passed); #endif }