From a0f1a905f7952de3f482fd86fc1db4643f89d2d1 Mon Sep 17 00:00:00 2001
From: Rainer Jung <rjung@apache.org>
Date: Fri, 18 Jul 2014 11:39:11 +0000
Subject: [PATCH] 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/trunk@1611600 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