From: Jim Jagielski Date: Mon, 14 Oct 2013 16:31:17 +0000 (+0000) Subject: Just use the def global... consistency is important X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1db1dea212676fc8279bcf82b851cc56f31717e5;p=thirdparty%2Fapache%2Fhttpd.git Just use the def global... consistency is important git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1531969 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index ef575444857..cd8102fa59d 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1498,7 +1498,7 @@ PROXY_DECLARE(char *) ap_proxy_worker_name(apr_pool_t *p, } 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) {