From: Victor J. Orlikowski Date: Wed, 16 Apr 2003 06:30:15 +0000 (+0000) Subject: Silence a compiler warning. X-Git-Tag: pre_ajp_proxy~1841 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72b6ff11a2a1c31d060764c142c79bdf4cae3b99;p=apache Silence a compiler warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99385 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_http.c b/modules/proxy/proxy_http.c index 81cc6e8523..e71d54b707 100644 --- a/modules/proxy/proxy_http.c +++ b/modules/proxy/proxy_http.c @@ -420,7 +420,7 @@ apr_status_t ap_proxy_http_request(apr_pool_t *p, request_rec *r, { conn_rec *c = r->connection; char *buf; - apr_bucket *e, *last_header_bucket; + apr_bucket *e, *last_header_bucket = NULL; const apr_array_header_t *headers_in_array; const apr_table_entry_t *headers_in; int counter, seen_eos, send_chunks;