You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2013/10/14 18:31:18 UTC

svn commit: r1531969 - /httpd/httpd/trunk/modules/proxy/proxy_util.c

Author: jim
Date: Mon Oct 14 16:31:17 2013
New Revision: 1531969

URL: http://svn.apache.org/r1531969
Log:
Just use the def global... consistency is important

Modified:
    httpd/httpd/trunk/modules/proxy/proxy_util.c

Modified: httpd/httpd/trunk/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.c?rev=1531969&r1=1531968&r2=1531969&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/trunk/modules/proxy/proxy_util.c Mon Oct 14 16:31:17 2013
@@ -1498,7 +1498,7 @@ PROXY_DECLARE(char *) ap_proxy_worker_na
     }
     if (!pool) {
         /* ugly */
-        apr_pool_create(&pool, ap_server_conf->process->pool);
+        apr_pool_create(&pool, NULL);
     }
     rv = apr_uri_parse(pool, worker->s->name, &uri);
     if (rv != APR_SUCCESS) {