From: Jim Jagielski Date: Fri, 23 Dec 2016 12:33:08 +0000 (+0000) Subject: Merge r1741570 from trunk: X-Git-Tag: 2.4.26~430 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12beb199955cf3e9702c89790d75afd64332a683;p=thirdparty%2Fapache%2Fhttpd.git Merge r1741570 from trunk: * Silence compiler warning Submitted by: rpluem Reviewed/backported by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1775825 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index b930697a84c..84a5a9cf188 100644 --- a/STATUS +++ b/STATUS @@ -35,7 +35,7 @@ Release history: while x.{even}.z versions are Stable/GA releases.] 2.4.26 : In development. - 2.4.25 : Tagged on December 16, 2016. + 2.4.25 : Tagged on December 16, 2016. Released on December 21, 2016. 2.4.24 : Tagged on December 16, 2016, not released. 2.4.23 : Tagged on June 30, 2016. Released on July 05, 2016. 2.4.22 : Tagged on June 20, 2016, not released. @@ -119,12 +119,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - *) mod_proxy_express.c: Silence compiler warning - "111: warning: 'backend' may be used uninitialized in this function" - trunk patch: http://svn.apache.org/r1741570 - 2.4.x patch: trunk works - +1: rjung, jim, ylavic - *) mod_ssl: Silence compiler warning "686: warning: 'ok' may be used uninitialized in this function" diff --git a/modules/proxy/mod_proxy_express.c b/modules/proxy/mod_proxy_express.c index ec4b94a67d7..0f5d604295c 100644 --- a/modules/proxy/mod_proxy_express.c +++ b/modules/proxy/mod_proxy_express.c @@ -108,7 +108,7 @@ static int xlate_name(request_rec *r) { int i; const char *name; - char *backend; + char *backend = NULL; apr_dbm_t *db; apr_status_t rv; apr_datum_t key, val;