jorton 2004/06/15 13:49:46
Modified: modules/filters mod_include.c
Log:
* modules/filters/mod_include.c (send_parsed_content): Only destroy
the temporary brigade if it wasn't passed on to the next filter.
Revision Changes Path
1.300 +1 -2 httpd-2.0/modules/filters/mod_include.c
Index: mod_include.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.c,v
retrieving revision 1.299
retrieving revision 1.300
diff -d -w -u -r1.299 -r1.300
--- mod_include.c 9 Feb 2004 20:29:19 -0000 1.299
+++ mod_include.c 15 Jun 2004 20:49:46 -0000 1.300
@@ -3453,9 +3453,8 @@
}
else {
rv = APR_SUCCESS;
- }
-
apr_brigade_destroy(pass_bb);
+ }
return rv;
}
|