diff options
author | Sascha Schumann <sas@php.net> | 2001-06-22 23:20:49 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-06-22 23:20:49 +0000 |
commit | 0bbe77309da930bdd0719faa0804d2bb879f5d36 (patch) | |
tree | aa1a5f0894cf3c1987ebbafb029938a69cc792c0 | |
parent | d87e59a1a3dea4a376e49697b670160189a303ff (diff) | |
download | php-git-0bbe77309da930bdd0719faa0804d2bb879f5d36.tar.gz |
Accomodate an Apache API change
-rw-r--r-- | sapi/apache2filter/sapi_apache2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index 27aa660852..9c8fdf33f0 100644 --- a/sapi/apache2filter/sapi_apache2.c +++ b/sapi/apache2filter/sapi_apache2.c @@ -334,7 +334,7 @@ static int php_output_filter(ap_filter_t *f, apr_bucket_brigade *bb) } /* moves all buckets from bb to ctx->bb */ - ap_save_brigade(f, &ctx->bb, &bb); + ap_save_brigade(f, &ctx->bb, &bb, f->r->pool); /* If we have received all data from the previous filters, * we "flatten" the buckets by creating a single string buffer. |