]> granicus.if.org Git - apache/commitdiff
Tag some pools
authorBill Stoddard <stoddard@apache.org>
Fri, 22 Mar 2002 20:24:22 +0000 (20:24 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 22 Mar 2002 20:24:22 +0000 (20:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94140 13f79535-47bb-0310-9956-ffa450edef68

server/main.c

index 7fc988549db8e4e2426eee27fe313c36614e8800..ffdaa9c4a0289428d5c01d45ae2bdce92118b109 100644 (file)
@@ -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) {