BufferedWriter.java (write(String,int,int)): Correctly check bounds.
* java/io/BufferedWriter.java (write(String,int,int)): Correctly check bounds. From-SVN: r46338
This commit is contained in:
parent
0d4903b81e
commit
ac569f305c
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/* BufferedWriter.java -- Buffer output into large blocks before writing
|
||||
Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -199,7 +199,7 @@ public class BufferedWriter extends Writer
|
|||
*/
|
||||
public void write (String str, int offset, int len) throws IOException
|
||||
{
|
||||
if (offset < 0 || len < 0 || offset + len < str.length())
|
||||
if (offset < 0 || len < 0 || offset + len > str.length())
|
||||
throw new ArrayIndexOutOfBoundsException ();
|
||||
|
||||
synchronized (lock)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue