mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 13:49:30 +08:00
ZipEntry.java (ZipEntry(String)): When name is bigger then 65535 chars throw IllegalArgumentException.
* java/util/zip/ZipEntry.java (ZipEntry(String)): When name is bigger then 65535 chars throw IllegalArgumentException. From-SVN: r63222
This commit is contained in:
parent
fefabda543
commit
7b54048202
@ -1,3 +1,8 @@
|
||||
2003-02-21 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/util/zip/ZipEntry.java (ZipEntry(String)): When name is bigger
|
||||
then 65535 chars throw IllegalArgumentException.
|
||||
|
||||
2003-02-21 Mark Wielaard <mark@klomp.org>
|
||||
|
||||
* java/util/zip/ZipFile.java (finalize): New method.
|
||||
|
@ -84,11 +84,15 @@ public class ZipEntry implements ZipConstants, Cloneable
|
||||
* Creates a zip entry with the given name.
|
||||
* @param name the name. May include directory components separated
|
||||
* by '/'.
|
||||
*
|
||||
* @exception NullPointerException when name is null.
|
||||
* @exception IllegalArgumentException when name is bigger then 65535 chars.
|
||||
*/
|
||||
public ZipEntry(String name)
|
||||
{
|
||||
if (name == null)
|
||||
throw new NullPointerException();
|
||||
int length = name.length();
|
||||
if (length > 65535)
|
||||
throw new IllegalArgumentException("name length is " + length);
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user