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

reset chain if we need to...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@724805 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2008-12-09 18:19:20 +00:00
parent 5a83c545be
commit a36484e4e0

View File

@@ -541,6 +541,9 @@ AP_DECLARE(void) ap_internal_fast_redirect(request_rec *rr, request_rec *r)
}
if (next && (next->frec == ap_subreq_core_filter_handle)) {
ap_remove_output_filter(next);
if (next == r->output_filters) {
r->output_filters = r->output_filters->next;
}
}
}