1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

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
This commit is contained in:
Victor J. Orlikowski
2001-06-28 07:05:18 +00:00
parent d59cbf8a61
commit 79686d250b

View File

@@ -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;