]> granicus.if.org Git - apache/commitdiff
Move the ap_run_insert_filters to consistently occur in
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 31 Aug 2001 02:23:25 +0000 (02:23 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 31 Aug 2001 02:23:25 +0000 (02:23 +0000)
  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

CHANGES
server/request.c

diff --git a/CHANGES b/CHANGES
index a1904447ad51a1bc954fa5f653083aa32af3049e..94eb241c2e9f98cb8e12a46e57875d09863551c2 100644 (file)
--- 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 <ianh@cnet.com>]
 
index 564ded6bbe9a86c17809b86a79d2b14ad1a1a40a..33f6a45f3276329b23b46da14dde61fc93bd9bb0 100644 (file)
@@ -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;