Parent Directory
|
Revision Log
|
Patch
--- httpd/httpd/trunk/modules/filters/mod_include.c 2007/11/07 23:31:03 592951
+++ httpd/httpd/trunk/modules/filters/mod_include.c 2008/02/20 13:44:22 629456
@@ -3312,6 +3312,7 @@
if (store) {
if (index) {
APR_BUCKET_REMOVE(b);
+ apr_bucket_setaside(b, r->pool);
APR_BRIGADE_INSERT_TAIL(intern->tmp_bb, b);
b = newb;
}
@@ -3364,6 +3365,7 @@
if (store) {
if (index) {
APR_BUCKET_REMOVE(b);
+ apr_bucket_setaside(b, r->pool);
APR_BRIGADE_INSERT_TAIL(intern->tmp_bb, b);
b = newb;
}
@@ -3404,6 +3406,7 @@
default: /* partial match */
newb = APR_BUCKET_NEXT(b);
APR_BUCKET_REMOVE(b);
+ apr_bucket_setaside(b, r->pool);
APR_BRIGADE_INSERT_TAIL(intern->tmp_bb, b);
b = newb;
break;
| apache@apache.org | ViewVC Help |
| Powered by ViewVC 1.1.2 |