From fc7c61e86acc47011fa377c1bf8df6bb487ce4d3 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Thu, 29 Sep 2005 13:59:27 +0000 Subject: [PATCH] de-ref bug - balancer is always not null since it's &balancer from the caller. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@292434 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 08f7f85a1b..7b91c8b164 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1350,7 +1350,7 @@ PROXY_DECLARE(int) ap_proxy_pre_request(proxy_worker **worker, } } } - else if (access_status == DECLINED && balancer != NULL) { + else if (access_status == DECLINED && *balancer != NULL) { /* All the workers are busy */ ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "proxy: all workers are busy. Unable to serve %s", -- 2.49.0