Skip to content

Commit c02b310

Browse files
committed
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
1 parent 50c3a93 commit c02b310

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/aaa/mod_authnz_fcgi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ static apr_status_t handle_response(const fcgi_provider_conf *conf,
472472
{
473473
apr_bucket *b;
474474
apr_bucket_brigade *ob;
475-
apr_size_t orspbuflen;
475+
apr_size_t orspbuflen = 0;
476476
apr_status_t rv = APR_SUCCESS;
477477
const char *fn = "handle_response";
478478
int header_state = HDR_STATE_READING_HEADERS;

0 commit comments

Comments
 (0)