From 3c36a14ba6ec0766574da2918bbe2a978a7551fe Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Oct 2005 02:20:48 +0000 Subject: [PATCH] Call ERR_remove_state() on the main thread on shutdown,too svn:r5322 --- src/common/crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/crypto.c b/src/common/crypto.c index 249be113ce..10b74b82ec 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -234,7 +234,7 @@ int crypto_global_cleanup(void) { EVP_cleanup(); - //ERR_remove_state(0); + ERR_remove_state(0); ERR_free_strings(); #ifndef NO_ENGINES ENGINE_cleanup(); -- 2.11.4.GIT