You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2012/03/15 18:36:18 UTC

svn commit: r1301111 - /httpd/httpd/trunk/modules/debugging/mod_dumpio.c

Author: sf
Date: Thu Mar 15 17:36:17 2012
New Revision: 1301111

URL: http://svn.apache.org/viewvc?rev=1301111&view=rev
Log:
Return an error code from a previous input filter

This likely fixes PR 52914

Modified:
    httpd/httpd/trunk/modules/debugging/mod_dumpio.c

Modified: httpd/httpd/trunk/modules/debugging/mod_dumpio.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/debugging/mod_dumpio.c?rev=1301111&r1=1301110&r2=1301111&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/debugging/mod_dumpio.c (original)
+++ httpd/httpd/trunk/modules/debugging/mod_dumpio.c Thu Mar 15 17:36:17 2012
@@ -146,6 +146,7 @@ static int dumpio_input_filter (ap_filte
     } else {
         ap_log_cerror(APLOG_MARK, APLOG_TRACE7, 0, c,
                       "mod_dumpio: %s - %d", f->frec->name, ret) ;
+        return ret;
     }
 
     return APR_SUCCESS ;