diff options
| author | Jim Jagielski <jim@apache.org> | 2005-09-29 13:59:27 +0000 |
|---|---|---|
| committer | Jim Jagielski <jim@apache.org> | 2005-09-29 13:59:27 +0000 |
| commit | fc7c61e86acc47011fa377c1bf8df6bb487ce4d3 (patch) | |
| tree | 3a30d29849004a1db18554683898ffc33df90235 /modules/proxy/proxy_util.c | |
| parent | c85c90e627e503534920653085c322cad0f27020 (diff) | |
| download | httpd-fc7c61e86acc47011fa377c1bf8df6bb487ce4d3.tar.gz | |
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
Diffstat (limited to 'modules/proxy/proxy_util.c')
| -rw-r--r-- | modules/proxy/proxy_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", |
