From: Victor J. Orlikowski Date: Thu, 28 Jun 2001 07:05:18 +0000 (+0000) Subject: An EOS bucket doesn't contain anything, so why shouldn't we skip it? X-Git-Tag: 2.0.20~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79686d250bcb6ae0de118abd3aaa4e11c0620dd9;p=thirdparty%2Fapache%2Fhttpd.git An EOS bucket doesn't contain anything, so why shouldn't we skip it? git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89471 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 335952f564a..62dd1afab05 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -1110,6 +1110,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_string_read(conn_rec *c, apr_bucket_brigade e = APR_BRIGADE_FIRST(bb); if (APR_BUCKET_IS_EOS(e)) { *eos = 1; + continue; } if (APR_SUCCESS != apr_bucket_read(e, (const char **)&response, &len, APR_BLOCK_READ)) { return rv;