From f8c07e1f33faf15d4caeadb9abf8bbdedea74b5e Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 3 Oct 2005 21:10:35 +0000 Subject: [PATCH] free EVP cipher information on shutdown to remove some spurious dmalloc complaints. svn:r5180 --- src/common/crypto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/crypto.c b/src/common/crypto.c index eaa002e7ba..168abeb722 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -221,6 +221,7 @@ crypto_global_init(int useAccel) int crypto_global_cleanup(void) { + EVP_cleanup(); ERR_free_strings(); #ifndef NO_ENGINES ENGINE_cleanup();