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 2008/04/08 00:43:54 UTC

svn commit: r645719 - /tomcat/trunk/java/org/apache/tomcat/util/buf/CharChunk.java

Author: markt
Date: Mon Apr  7 15:43:52 2008
New Revision: 645719

URL: http://svn.apache.org/viewvc?rev=645719&view=rev
Log:
Remy's resizing fix from bug 44494

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/buf/CharChunk.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/CharChunk.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/buf/CharChunk.java?rev=645719&r1=645718&r2=645719&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/buf/CharChunk.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/buf/CharChunk.java Mon Apr  7 15:43:52 2008
@@ -480,7 +480,7 @@
 	    tmp=new char[newSize];
 	}
 	
-	System.arraycopy(buff, start, tmp, start, end-start);
+	System.arraycopy(buff, 0, tmp, 0, end);
 	buff = tmp;
 	tmp = null;
     }



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