1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

* PROXY_WORKER_IS_INITIALIZED checks if PROXY_WORKER_INITIALIZED is set in

worker->s->status, but we need to check here if it is set in worker->status.

  As PROXY_WORKER_INITIALIZED is set in worker->s->status in
  ap_proxy_initialize_worker_share, which is called just before
  ap_proxy_initialize_worker we never initialize the worker. This is very bad
  as we create no reslist for the pool in this case.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@443503 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ruediger Pluem
2006-09-14 22:34:34 +00:00
parent 8c2b72b53c
commit 7361c75b95

View File

@@ -1774,7 +1774,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_initialize_worker(proxy_worker *worker, ser
int mpm_threads; int mpm_threads;
#endif #endif
if (PROXY_WORKER_IS_INITIALIZED(worker)) { if (worker->status & PROXY_WORKER_INITIALIZED) {
/* The worker is already initialized */ /* The worker is already initialized */
return APR_SUCCESS; return APR_SUCCESS;
} }