From f28bd396a5fb89dba5836563e362d2feefb2bb1f Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Fri, 18 Jul 2014 18:33:46 +0000 Subject: [PATCH] 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 --- modules/aaa/mod_authnz_fcgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0