From: William A. Rowe Jr Date: Wed, 19 Dec 2007 03:09:34 +0000 (+0000) Subject: What's left can exceed size_t X-Git-Tag: 2.3.0~1127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=911ed59e9c5a65447925a76577bdb3e71b5bcaee;p=thirdparty%2Fapache%2Fhttpd.git What's left can exceed size_t git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@605400 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 8090956be70..4f433406596 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -1175,7 +1175,7 @@ AP_DECLARE(int) ap_discard_request_body(request_rec *r) apr_bucket *e; int rv, seen_eos; core_dir_conf *dconf; - apr_size_t left = 0; + apr_off_t left = 0; /* Sometimes we'll get in a state where the input handling has * detected an error where we want to drop the connection, so if