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
2 changed files with 6 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue