From: Paul Querna Date: Tue, 1 Sep 2009 09:09:54 +0000 (+0000) Subject: Initialize len to 0, since for some logic paths it might be unset. X-Git-Tag: 2.3.3~347 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f2915b9f916f40b5718ca90dbaa7d27460deb9c3;p=thirdparty%2Fapache%2Fhttpd.git Initialize len to 0, since for some logic paths it might be unset. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@809907 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 7fb5e18f171..3e96cb9de1d 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -102,7 +102,7 @@ static apr_status_t get_remaining_chunk_line(http_ctx_t *ctx, apr_off_t brigade_length; apr_bucket *e; const char *lineend; - apr_size_t len; + apr_size_t len = 0; /* * As the brigade b should have been requested in mode AP_MODE_GETLINE