You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ta...@apache.org on 2009/05/26 17:42:15 UTC

svn commit: r778761 - /httpd/httpd/trunk/support/logresolve.c

Author: takashi
Date: Tue May 26 15:42:15 2009
New Revision: 778761

URL: http://svn.apache.org/viewvc?rev=778761&view=rev
Log:
Make pline a child of main pool.

Modified:
    httpd/httpd/trunk/support/logresolve.c

Modified: httpd/httpd/trunk/support/logresolve.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/support/logresolve.c?rev=778761&r1=778760&r2=778761&view=diff
==============================================================================
--- httpd/httpd/trunk/support/logresolve.c (original)
+++ httpd/httpd/trunk/support/logresolve.c Tue May 26 15:42:15 2009
@@ -203,7 +203,7 @@
 #endif
 
     cache = apr_hash_make(pool);
-    if(apr_pool_create(&pline, NULL) != APR_SUCCESS){
+    if(apr_pool_create(&pline, pool) != APR_SUCCESS){
         return 1;
     }