From: Bill Stoddard Date: Fri, 22 Mar 2002 20:24:22 +0000 (+0000) Subject: Tag some pools X-Git-Tag: 2.0.34~167 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89b670a8753bafb3b2b251033fb7400a8b80245a;p=thirdparty%2Fapache%2Fhttpd.git Tag some pools git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94140 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index 7fc988549db..ffdaa9c4a02 100644 --- a/server/main.c +++ b/server/main.c @@ -524,6 +524,7 @@ int main(int argc, const char * const argv[]) apr_pool_create(&plog, pglobal); apr_pool_tag(plog, "plog"); apr_pool_create(&ptemp, pconf); + apr_pool_tag(ptemp, "ptemp"); /* Note that we preflight the config file once * before reading it _again_ in the main loop. @@ -581,6 +582,7 @@ int main(int argc, const char * const argv[]) */ ap_conftree = NULL; apr_pool_create(&ptemp, pconf); + apr_pool_tag(ptemp, "ptemp"); ap_server_root = def_server_root; server_conf = ap_read_config(process, ptemp, confname, &ap_conftree); if (ap_run_pre_config(pconf, plog, ptemp) != OK) {