Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/wp_wolfprov.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,10 @@ static void wolfssl_prov_ctx_free(WOLFPROV_CTX* ctx)
wc_FreeMutex(&ctx->rng_mutex);
#endif
wc_FreeRng(&ctx->rng);
#ifdef FP_ECC
/* Free this thread's FP ECC cache; wc_ecc_free() doesn't. */
wc_ecc_fp_free();
#endif
OPENSSL_free(ctx);
}

Expand Down
Loading