From: Ruediger Pluem Date: Tue, 5 May 2009 07:43:14 +0000 (+0000) Subject: * Silence compiler warning. X-Git-Tag: 2.3.3~656 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ba4889cc7bc4b38c71d43f25ff7d354ab2ca806;p=thirdparty%2Fapache%2Fhttpd.git * Silence compiler warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@771610 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index c8dff20dd29..04623a876d5 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1080,7 +1080,7 @@ PROXY_DECLARE(const char *) ap_proxy_location_reverse_map(request_rec *r, */ if ((strncasecmp(real, "balancer://", 11) == 0) && (balancer = ap_proxy_get_balancer(r->pool, sconf, real))) { - int n, l3; + int n, l3 = 0; proxy_worker *worker = (proxy_worker *)balancer->workers->elts; const char *urlpart = ap_strchr_c(real + 11, '/'); if (urlpart) {