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: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e751ebc637ed9c680be07b002101c4cd45f2668;p=thirdparty%2Fapache%2Fhttpd.git 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/modules/ssl@93636 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_init.c b/ssl_engine_init.c index 89f62be2674..b49f97b6a5c 100644 --- a/ssl_engine_init.c +++ b/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; }