From: Stefan Eissing Date: Mon, 30 Aug 2021 10:05:06 +0000 (+0000) Subject: * mod_deflate: refrain from reading buckets of known length, just X-Git-Tag: 2.5.0-alpha2-ci-test-only~850 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fd0275c1870ae8197677f9ecb4a0003d08413d0;p=thirdparty%2Fapache%2Fhttpd.git * mod_deflate: refrain from reading buckets of known length, just to get their length. This may transform buckets unwanted (e.g. file to mmap) and prevent optimization down the filter chain. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1892728 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_deflate.c b/modules/filters/mod_deflate.c index 207617b3525..102d54f5834 100644 --- a/modules/filters/mod_deflate.c +++ b/modules/filters/mod_deflate.c @@ -623,9 +623,14 @@ static apr_status_t deflate_out_filter(ap_filter_t *f, continue; } - rc = apr_bucket_read(e, &data, &blen, APR_BLOCK_READ); - if (rc != APR_SUCCESS) - return rc; + if (e->length == (apr_size_t)-1) { + rc = apr_bucket_read(e, &data, &blen, APR_BLOCK_READ); + if (rc != APR_SUCCESS) + return rc; + } + else { + blen = e->length; + } len += blen; /* 50 is for Content-Encoding and Vary headers and ETag suffix */ if (len > sizeof(gzip_header) + VALIDATION_SIZE + 50)