You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2008/12/09 19:19:20 UTC

svn commit: r724805 - /httpd/httpd/trunk/modules/http/http_request.c

Author: jim
Date: Tue Dec  9 10:19:20 2008
New Revision: 724805

URL: http://svn.apache.org/viewvc?rev=724805&view=rev
Log:
reset chain if we need to...

Modified:
    httpd/httpd/trunk/modules/http/http_request.c

Modified: httpd/httpd/trunk/modules/http/http_request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_request.c?rev=724805&r1=724804&r2=724805&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_request.c (original)
+++ httpd/httpd/trunk/modules/http/http_request.c Tue Dec  9 10:19:20 2008
@@ -541,6 +541,9 @@
         }
         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;
+            }
         }
     }