From: Bradley Nicholes Date: Tue, 28 May 2002 19:28:13 +0000 (+0000) Subject: Need to destroy the global cache during module shutdown that was created X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c19aa850b918794fb83e62df3d3b2a9b51d455a;p=apache Need to destroy the global cache during module shutdown that was created when the module what initialized. This eliminates a memory leak. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95322 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/util_ldap_cache.c b/modules/experimental/util_ldap_cache.c index aee694a376..0414f4d4e7 100644 --- a/modules/experimental/util_ldap_cache.c +++ b/modules/experimental/util_ldap_cache.c @@ -286,6 +286,7 @@ apr_status_t util_ldap_cache_module_kill(void *data) return result; } #endif + util_ald_destroy_cache(util_ldap_cache); return APR_SUCCESS; }