From: Rainer Jung Date: Fri, 18 Jul 2014 18:33:46 +0000 (+0000) Subject: Merge r1611600 from trunk: X-Git-Tag: 2.4.11~364 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f28bd396a5fb89dba5836563e362d2feefb2bb1f;p=apache Merge r1611600 from trunk: Silence compiler warning: mod_authnz_fcgi.c:580:44: warning: 'orspbuflen' may be used uninitialized in this function. Not true but annoying. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1611758 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_authnz_fcgi.c b/modules/aaa/mod_authnz_fcgi.c index 673b0e774d..5e4a937850 100644 --- a/modules/aaa/mod_authnz_fcgi.c +++ b/modules/aaa/mod_authnz_fcgi.c @@ -472,7 +472,7 @@ static apr_status_t handle_response(const fcgi_provider_conf *conf, { apr_bucket *b; apr_bucket_brigade *ob; - apr_size_t orspbuflen; + apr_size_t orspbuflen = 0; apr_status_t rv = APR_SUCCESS; const char *fn = "handle_response"; int header_state = HDR_STATE_READING_HEADERS;