From: Brian Pane Date: Mon, 10 Oct 2005 03:18:51 +0000 (+0000) Subject: Added a missing return value in ap_core_output_filter X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c5077d5c6455aeb9614aec6ddfba1f03a22c636;p=thirdparty%2Fapache%2Fhttpd.git Added a missing return value in ap_core_output_filter git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/async-dev@312532 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core_filters.c b/server/core_filters.c index 30cde3ccbb8..34371305263 100644 --- a/server/core_filters.c +++ b/server/core_filters.c @@ -387,7 +387,7 @@ apr_status_t ap_core_output_filter(ap_filter_t *f, apr_bucket_brigade *new_bb) bb = new_bb; } else { - return; + return APR_SUCCESS; } /* Scan through the brigade and decide whether to attempt a write,