From 4a4869adca2927eb4542b78680467c7629d4fd99 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Tue, 9 Aug 2005 21:15:40 +0000 Subject: [PATCH] * modules/proxy/mod_proxy_http.c (stream_reqbody_cl): Fix gcc warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@231114 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c index 2e4b8149021..abd11f0ea0a 100644 --- a/modules/proxy/mod_proxy_http.c +++ b/modules/proxy/mod_proxy_http.c @@ -309,7 +309,7 @@ static apr_status_t stream_reqbody_cl(apr_pool_t *p, const char *old_cl_val) { int seen_eos = 0; - apr_status_t status; + apr_status_t status = APR_SUCCESS; apr_bucket_alloc_t *bucket_alloc = r->connection->bucket_alloc; apr_bucket_brigade *bb; apr_bucket *e; -- 2.47.2