Browse Source

Call ERR_remove_state() on the main thread on shutdown,too

svn:r5322
Nick Mathewson 18 years ago
parent
commit
3c36a14ba6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/crypto.c

+ 1 - 1
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();