From: Doug MacEachern Date: Thu, 28 Feb 2002 05:28:43 +0000 (+0000) Subject: remove #ifdef SHARED_MODULE around ssl library cleanup calls. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a6cbfa00e05d83629919024cd3eb9887f2bf413;p=apache remove #ifdef SHARED_MODULE around ssl library cleanup calls. SHARED_MODULE is no longer defined, so we were leaking. plus we always do a full startup/teardown regardless of being a dso or static. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93636 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_init.c b/modules/ssl/ssl_engine_init.c index 89f62be267..b49f97b6a5 100644 --- a/modules/ssl/ssl_engine_init.c +++ b/modules/ssl/ssl_engine_init.c @@ -1012,11 +1012,9 @@ apr_status_t ssl_init_ModuleKill(void *data) /* * Try to kill the internals of the SSL library. */ -#ifdef SHARED_MODULE ERR_free_strings(); ERR_remove_state(0); EVP_cleanup(); -#endif return APR_SUCCESS; }