From ee7f80c580507a86baa9d07cc05af9e09de2bcb2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 17 Mar 2000 23:49:15 +0000 Subject: [PATCH] Make sure to complete the cleanup of names. --- crypto/evp/names.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crypto/evp/names.c b/crypto/evp/names.c index 3e8f460328..620f43feaa 100644 --- a/crypto/evp/names.c +++ b/crypto/evp/names.c @@ -114,5 +114,10 @@ void EVP_cleanup(void) { OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH); OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH); + /* The above calls will only clean out the contents of the name + hash table, but not the hash table itself. The following line + does that part. -- Richard Levitte */ + OBJ_NAME_cleanup(-1); + EVP_PBE_cleanup(); } -- 2.25.1