]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Added a missing return value in ap_core_output_filter
authorBrian Pane <brianp@apache.org>
Mon, 10 Oct 2005 03:18:51 +0000 (03:18 +0000)
committerBrian Pane <brianp@apache.org>
Mon, 10 Oct 2005 03:18:51 +0000 (03:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/async-dev@312532 13f79535-47bb-0310-9956-ffa450edef68

server/core_filters.c

index 30cde3ccbb88c0187054828bae4e3072c7d2654c..3437130526331866a5def8233a6de7b0e5225255 100644 (file)
@@ -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,