diff options
author | Ruediger Pluem <rpluem@apache.org> | 2017-06-28 08:50:00 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2017-06-28 08:50:00 +0200 |
commit | 81c622d8bf9504bd572283d3265e7b068df4c710 (patch) | |
tree | eebdd0c351277c906cd9c8bc376fbc63ff546100 | |
parent | Appears to resolve the issue to permit single-char fieldnames; PR61220 (diff) | |
download | apache2-81c622d8bf9504bd572283d3265e7b068df4c710.tar.xz apache2-81c622d8bf9504bd572283d3265e7b068df4c710.zip |
* Silence compiler warning
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1800126 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/http/http_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_core.c b/modules/http/http_core.c index b5b082e36e..6d4b0fbb0e 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); |