* modules/proxy/mod_proxy_balancer.c (proxy_balancer_pre_request): Fix

another valid variable-may-be-used-uninitialized warning from GCC 4
(in the !balancer->sticky case, find_session_route returns NULL
without setting route).


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@193117 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joe Orton
2005-06-23 09:10:09 +00:00
parent fc3a145330
commit 3169261900

View File

@ -441,7 +441,7 @@ static int proxy_balancer_pre_request(proxy_worker **worker,
{
int access_status;
proxy_worker *runtime;
char *route;
char *route = NULL;
apr_status_t rv;
*worker = NULL;