mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
reversal of 1698239 due to nedless loop in t/apache/pr17629.t
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1698328 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -613,16 +613,8 @@ AP_DECLARE(void) ap_internal_fast_redirect(request_rec *rr, request_rec *r)
|
||||
update_r_in_filters(r->output_filters, rr, r);
|
||||
|
||||
if (r->main) {
|
||||
ap_filter_t *next = r->output_filters;
|
||||
while (next && (next != r->proto_output_filters)) {
|
||||
if (next->frec == ap_subreq_core_filter_handle) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!next || next == r->proto_output_filters) {
|
||||
ap_add_output_filter_handle(ap_subreq_core_filter_handle,
|
||||
NULL, r, r->connection);
|
||||
}
|
||||
ap_add_output_filter_handle(ap_subreq_core_filter_handle,
|
||||
NULL, r, r->connection);
|
||||
}
|
||||
else {
|
||||
/*
|
||||
|
Reference in New Issue
Block a user