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:
parent
8a1977f38c
commit
773d424b52
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user