Reset needCRLFParse for recycling ChunkedInputFilter
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc5.5.x/trunk@1359748 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/STATUS.txt b/STATUS.txt
index 02cf1a9..346d1af 100644
--- a/STATUS.txt
+++ b/STATUS.txt
@@ -24,14 +24,6 @@
PATCHES ACCEPTED TO BACKPORT FROM TRUNK/OTHER:
[ start all new proposals below, under PATCHES PROPOSED. ]
-* https://issues.apache.org/bugzilla/show_bug.cgi?id=52055#c14
- Correctly reset ChunkedInputFilter.needCRLFParse flag when the filter is
- recycled.
- http://svn.apache.org/viewvc?rev=1342795&view=rev
- (r1342797 in Tomcat 7)
- +1: kkolinko, schultz, jim
- -1:
-
* Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=53050
Fix XOR arithmetics and charset issue when calculating entropy to
initialize random numbers generator in session manager. Based on
diff --git a/connectors/http11/src/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java b/connectors/http11/src/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java
index 947b4e5..76558da 100644
--- a/connectors/http11/src/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java
+++ b/connectors/http11/src/java/org/apache/coyote/http11/filters/ChunkedInputFilter.java
@@ -202,6 +202,7 @@
pos = 0;
lastValid = 0;
endChunk = false;
+ needCRLFParse = false;
}