From 24c69f798b6cc9e7311dc298e9ac2e17e9f3a4b7 Mon Sep 17 00:00:00 2001 From: brenosilva Date: Wed, 4 May 2011 21:12:48 +0000 Subject: [PATCH] Fix problem when buffering in input filter --- apache2/apache2_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache2/apache2_io.c b/apache2/apache2_io.c index 1e5d070c..d3b7eac9 100644 --- a/apache2/apache2_io.c +++ b/apache2/apache2_io.c @@ -146,7 +146,7 @@ apr_status_t input_filter(ap_filter_t *f, apr_bucket_brigade *bb_out, } } - return ap_get_brigade(f->next, bb_out, mode, block, nbytes); + return APR_SUCCESS; } /**