diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-10-03 21:10:35 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-10-03 21:10:35 +0000 |
commit | f8c07e1f33faf15d4caeadb9abf8bbdedea74b5e (patch) | |
tree | a683dd4e0cef285ed4d7ec0fc3bf54292c65b130 /src/common/crypto.c | |
parent | fd04db90b5e22bd5908fc2eb5866b81165c6b0ad (diff) | |
download | tor-f8c07e1f33faf15d4caeadb9abf8bbdedea74b5e.tar.gz tor-f8c07e1f33faf15d4caeadb9abf8bbdedea74b5e.zip |
free EVP cipher information on shutdown to remove some spurious dmalloc complaints.
svn:r5180
Diffstat (limited to 'src/common/crypto.c')
-rw-r--r-- | src/common/crypto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index eaa002e7ba..168abeb722 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -221,6 +221,7 @@ crypto_global_init(int useAccel) int crypto_global_cleanup(void) { + EVP_cleanup(); ERR_free_strings(); #ifndef NO_ENGINES ENGINE_cleanup(); |