diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-10-26 02:20:48 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-10-26 02:20:48 +0000 |
commit | 3c36a14ba6ec0766574da2918bbe2a978a7551fe (patch) | |
tree | de9d8623c8e94abd215ba0c07c0c31f82b578301 /src | |
parent | 9492424d3fa009011bfb10d6afe2a1b5e6190173 (diff) | |
download | tor-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.c | 2 |
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(); |