[Remove entries to the current 2.0 section below, when backported]
+ *) While processing filters on internal redirects, remember seen EOS
+ buckets also in the request structure of the redirect issuer(s). This
+ prevents filters (such as mod_deflate) to add garbage to the response.
+ PR 14451. [André Malo]
+
*) Allow restart of httpd to occur even with syntax errors in the config
file. PR 16813. [Justin Erenkrantz]
*) Allow apachectl to perform status with links and elinks as well.
[Justin Erenkrantz]
- *) Fix segfault which occurred when a section in an included file was
- not closed. PR 17093. [André Malo]
+ *) Fix segfault which occurred when a section in an included configuration
+ file was not closed. PR 17093. [André Malo]
*) Extend the SetEnvIf directive to capture subexpressions of the
matched value. [André Malo]
* get two EOS buckets on the same request.
*/
next->r->eos_sent = 1;
+
+ /* remember the eos for internal redirects, too */
+ if (next->r->prev) {
+ request_rec *prev = next->r->prev;
+
+ while (prev) {
+ prev->eos_sent = 1;
+ prev = prev->prev;
+ }
+ }
}
return next->frec->filter_func.out_func(next, bb);
}