PR: 27928
Submitted by: Bojan Smojver <bojan rexursive.com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103263
13f79535-47bb-0310-9956-
ffa450edef68
[Remove entries to the current 2.0 section below, when backported]
+ *) mod_logio no longer removes the EOS bucket. PR 27928.
+ [Bojan Smojver <bojan rexursive.com>]
+
*) mod_rewrite no longer turns forward proxy requests into reverse proxy
requests. PR 28125 [ast domdv.de, André Malo]
/* End of data, make sure we flush */
if (APR_BUCKET_IS_EOS(b)) {
- APR_BRIGADE_INSERT_TAIL(bb,
- apr_bucket_flush_create(f->c->bucket_alloc));
- APR_BUCKET_REMOVE(b);
- apr_bucket_destroy(b);
+ APR_BUCKET_INSERT_BEFORE(b,
+ apr_bucket_flush_create(f->c->bucket_alloc));
}
return ap_pass_brigade(f->next, bb);