From: William A. Rowe Jr Date: Wed, 11 Aug 2004 23:01:39 +0000 (+0000) Subject: Use the pool for add_worker call. X-Git-Tag: post_ajp_proxy~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08e97ab50f5611ebf5f333870134d13a37fc268e;p=apache Use the pool for add_worker call. Submitted by: mturk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104616 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index b6fe0306a7..f24f4ba4f9 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -1300,7 +1300,7 @@ static const char *add_member(cmd_parms *cmd, void *dummy, const char *arg) return apr_pstrcat(cmd->temp_pool, "BalancerMember ", err, NULL); } /* Add the worker to the load balancer */ - ap_proxy_add_worker_to_balancer(balancer, worker); + ap_proxy_add_worker_to_balancer(cmd->pool, balancer, worker); return NULL; }