ByteArrayOutputStream.java (resize): Fix off-by-one error.

* java/io/ByteArrayOutputStream.java (resize):
Fix off-by-one error.

From-SVN: r73359
This commit is contained in:
Jeff Sturm 2003-11-08 13:41:20 +00:00 committed by Jeff Sturm
parent 8a1977f38c
commit 773d424b52
2 changed files with 6 additions and 1 deletions

View file

@ -198,7 +198,7 @@ public class ByteArrayOutputStream extends OutputStream
// Resize buffer to accommodate new bytes.
private void resize (int add)
{
if (count + add >= buf.length)
if (count + add > buf.length)
{
int newlen = buf.length * 2;
if (count + add > newlen)