[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Call ERR_remove_state() on the main thread on shutdown,too
Update of /home/or/cvsroot/tor/src/common
In directory moria:/tmp/cvs-serv26891/src/common
Modified Files:
crypto.c
Log Message:
Call ERR_remove_state() on the main thread on shutdown,too
Index: crypto.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/crypto.c,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -d -r1.171 -r1.172
--- crypto.c 25 Oct 2005 19:01:48 -0000 1.171
+++ crypto.c 26 Oct 2005 02:20:48 -0000 1.172
@@ -234,7 +234,7 @@
crypto_global_cleanup(void)
{
EVP_cleanup();
- //ERR_remove_state(0);
+ ERR_remove_state(0);
ERR_free_strings();
#ifndef NO_ENGINES
ENGINE_cleanup();