mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
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
This commit is contained in:
@@ -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",
|
||||
|
Reference in New Issue
Block a user