mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
* 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:
@ -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;
|
||||
|
Reference in New Issue
Block a user