From: William A. Rowe Jr Date: Fri, 31 Aug 2001 02:23:25 +0000 (+0000) Subject: Move the ap_run_insert_filters to consistently occur in X-Git-Tag: 2.0.26~367 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0dc1d9811c6b0689c0bdfbb3fbe6e8c727bb53ea;p=apache Move the ap_run_insert_filters to consistently occur in ap_process_request_internal. This allows the sub_req handler to alter the filters before the subreq is actually run. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90834 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index a1904447ad..94eb241c2e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.26-dev + *) Normalize the primary request, redirects and sub-requests to + run the same ap_process_request_internal for consistency in + robustness, behavior and security. [William Rowe] + *) Fix a segfault with mod_include when r->path_info is not set (which is the case with mod_proxy). [Ian Holsman ] diff --git a/server/request.c b/server/request.c index 564ded6bbe..33f6a45f32 100644 --- a/server/request.c +++ b/server/request.c @@ -1684,8 +1684,6 @@ AP_DECLARE(int) ap_run_sub_req(request_rec *r) { int retval; - /* see comments in ap_process_request_internal() */ - ap_run_insert_filter(r); retval = ap_invoke_handler(r); ap_finalize_sub_req_protocol(r); return retval;