1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

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
This commit is contained in:
Jim Jagielski
2013-10-14 16:31:17 +00:00
parent c984a2e5f3
commit 3af21fb887

View File

@@ -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) {