mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
fix clang warning (dead initialization)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1387979 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -702,7 +702,6 @@ static int balancer_post_config(apr_pool_t *pconf, apr_pool_t *plog,
|
||||
apr_pool_t *ptemp, server_rec *s)
|
||||
{
|
||||
apr_status_t rv;
|
||||
void *sconf = s->module_config;
|
||||
proxy_server_conf *conf;
|
||||
ap_slotmem_instance_t *new = NULL;
|
||||
apr_time_t tstamp;
|
||||
@@ -746,7 +745,7 @@ static int balancer_post_config(apr_pool_t *pconf, apr_pool_t *plog,
|
||||
char *id;
|
||||
proxy_balancer *balancer;
|
||||
ap_slotmem_type_t type;
|
||||
sconf = s->module_config;
|
||||
void *sconf = s->module_config;
|
||||
conf = (proxy_server_conf *)ap_get_module_config(sconf, &proxy_module);
|
||||
/*
|
||||
* During create_proxy_config() we created a dummy id. Now that
|
||||
|
Reference in New Issue
Block a user