remm 2005/03/04 10:00:41 Modified: jasper2/src/share/org/apache/jasper/runtime BodyContentImpl.java Log: - 33810: I do not see the close field being reset to false anywhere, which is a problem. Of course, calling close on a BodyContent is totally useless, which is probably why we never heard of the problem before. Revision Changes Path 1.14 +1 -0 jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/BodyContentImpl.java Index: BodyContentImpl.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/BodyContentImpl.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- BodyContentImpl.java 1 Jul 2004 09:44:27 -0000 1.13 +++ BodyContentImpl.java 4 Mar 2005 18:00:41 -0000 1.14 @@ -551,6 +551,7 @@ */ void setWriter(Writer writer) { this.writer = writer; + closed = false; if (writer != null) { // According to the spec, the JspWriter returned by // JspContext.pushBody(java.io.Writer writer) must behave as
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]