summaryrefslogtreecommitdiffstats
path: root/modules/aaa
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2014-07-18 13:39:11 +0200
committerRainer Jung <rjung@apache.org>2014-07-18 13:39:11 +0200
commita0f1a905f7952de3f482fd86fc1db4643f89d2d1 (patch)
tree7f7363eb2c302491554e5d26ada663cb7b2c920e /modules/aaa
parentFix typo spotted by Mike Rumph (diff)
downloadapache2-a0f1a905f7952de3f482fd86fc1db4643f89d2d1.tar.xz
apache2-a0f1a905f7952de3f482fd86fc1db4643f89d2d1.zip
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
Diffstat (limited to 'modules/aaa')
-rw-r--r--modules/aaa/mod_authnz_fcgi.c2
1 files changed, 1 insertions, 1 deletions
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;