aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-10-26 02:20:48 +0000
committerNick Mathewson <nickm@torproject.org>2005-10-26 02:20:48 +0000
commit3c36a14ba6ec0766574da2918bbe2a978a7551fe (patch)
treede9d8623c8e94abd215ba0c07c0c31f82b578301 /src
parent9492424d3fa009011bfb10d6afe2a1b5e6190173 (diff)
downloadtor-3c36a14ba6ec0766574da2918bbe2a978a7551fe.tar
tor-3c36a14ba6ec0766574da2918bbe2a978a7551fe.tar.gz
Call ERR_remove_state() on the main thread on shutdown,too
svn:r5322
Diffstat (limited to 'src')
-rw-r--r--src/common/crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 249be113c..10b74b82e 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();