You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by br...@apache.org on 2005/10/10 05:18:53 UTC

svn commit: r312532 - /httpd/httpd/branches/async-dev/server/core_filters.c

Author: brianp
Date: Sun Oct  9 20:18:51 2005
New Revision: 312532

URL: http://svn.apache.org/viewcvs?rev=312532&view=rev
Log:
Added a missing return value in ap_core_output_filter

Modified:
    httpd/httpd/branches/async-dev/server/core_filters.c

Modified: httpd/httpd/branches/async-dev/server/core_filters.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/async-dev/server/core_filters.c?rev=312532&r1=312531&r2=312532&view=diff
==============================================================================
--- httpd/httpd/branches/async-dev/server/core_filters.c (original)
+++ httpd/httpd/branches/async-dev/server/core_filters.c Sun Oct  9 20:18:51 2005
@@ -387,7 +387,7 @@
         bb = new_bb;
     }
     else {
-        return;
+        return APR_SUCCESS;
     }
 
     /* Scan through the brigade and decide whether to attempt a write,