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

@ -1,3 +1,8 @@
2003-11-08 Jeff Sturm <jsturm@one-point.com>
* java/io/ByteArrayOutputStream.java (resize):
Fix off-by-one error.
2003-11-08 Bryce McKinlay <bryce@mckinlay.net.nz>
* gnu/gcj/xlib/XAnyEvent.java (XAnyEvent): Make constructor

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)