From: Bradley Nicholes Date: Wed, 30 Jul 2003 19:21:38 +0000 (+0000) Subject: Don't spend more time destroying pool nodes than we have to. X-Git-Tag: 2.0.48~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0648604d0d1135dd9b5aaf9c669899f6d276e373;p=thirdparty%2Fapache%2Fhttpd.git Don't spend more time destroying pool nodes than we have to. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@100867 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/netware/mpm_netware.c b/server/mpm/netware/mpm_netware.c index 544f2d83acd..8db931e6e41 100644 --- a/server/mpm/netware/mpm_netware.c +++ b/server/mpm/netware/mpm_netware.c @@ -218,7 +218,10 @@ static void clean_child_exit(int code, int worker_num, apr_pool_t *pthrd, apr_bucket_alloc_t *bucket_alloc) { if (!shutdown_pending) { - apr_bucket_alloc_destroy(bucket_alloc); + /* Destroying the thread pool should take + care of the bucket allocator. So + there is no need to destroy the bucket + allocator here also */ apr_pool_destroy(pthrd); }