From: Ruediger Pluem Date: Wed, 28 Jun 2017 06:50:00 +0000 (+0000) Subject: * Silence compiler warning X-Git-Tag: 2.5.0-alpha~325 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81c622d8bf9504bd572283d3265e7b068df4c710;p=thirdparty%2Fapache%2Fhttpd.git * Silence compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1800126 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index b5b082e36e7..6d4b0fbb0e2 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -134,7 +134,7 @@ static apr_port_t http_port(const request_rec *r) static int ap_process_http_async_connection(conn_rec *c) { - request_rec *r; + request_rec *r = NULL; conn_state_t *cs = c->cs; AP_DEBUG_ASSERT(cs != NULL);