]> granicus.if.org Git - apache/commitdiff
An EOS bucket doesn't contain anything, so why shouldn't we skip it?
authorVictor J. Orlikowski <orlikowski@apache.org>
Thu, 28 Jun 2001 07:05:18 +0000 (07:05 +0000)
committerVictor J. Orlikowski <orlikowski@apache.org>
Thu, 28 Jun 2001 07:05:18 +0000 (07:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89471 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_util.c

index 335952f564acb8a505a68dd1f49f0633488e4c95..62dd1afab054387fde4d8c175d311c4d4c2617f0 100644 (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;