You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2014/06/09 12:06:32 UTC

svn commit: r1601332 - /tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java

Author: markt
Date: Mon Jun  9 10:06:32 2014
New Revision: 1601332

URL: http://svn.apache.org/r1601332
Log:
Correct a location where an exception was still thrown directly rather than via the utility method where the error flag is also set.

Modified:
    tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java

Modified: tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java?rev=1601332&r1=1601331&r2=1601332&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java (original)
+++ tomcat/trunk/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java Mon Jun  9 10:06:32 2014
@@ -526,7 +526,7 @@ public class ChunkedInputFilter implemen
                     // limit placed on trailing header size
                     int newlimit = trailingHeaders.getLimit() -1;
                     if (trailingHeaders.getEnd() > newlimit) {
-                        throw new IOException(sm.getString("chunkedInputFilter.maxTrailer"));
+                        throwIOException(sm.getString("chunkedInputFilter.maxTrailer"));
                     }
                     trailingHeaders.setLimit(newlimit);
                 } else {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org