From: Ruediger Pluem Date: Sun, 28 Aug 2011 17:12:52 +0000 (+0000) Subject: * Silence compiler warning X-Git-Tag: 2.3.15~325 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=18edf9f28a805991defa074a48e06257bc0e6506;p=thirdparty%2Fapache%2Fhttpd.git * Silence compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1162560 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 8afa7756b8f..52c9b03aa84 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -92,7 +92,7 @@ static apr_status_t copy_brigade_range(apr_bucket_brigade *bb, const char *s; apr_size_t len; apr_uint64_t start64, end64; - apr_off_t pofft; + apr_off_t pofft = 0; /* * Once we know that start and end are >= 0 convert everything to apr_uint64_t.