Commit 3a3f137e by Mark Wielaard Committed by Mark Wielaard

ZipEntry.java (setComment): Don't check length when argument is null.

       * java/util/zip/ZipEntry.java (setComment): Don't check length when
       argument is null.

From-SVN: r63227
parent 7fb1c86d
2003-02-21 Mark Wielaard <mark@klomp.org>
* java/util/zip/ZipEntry.java (setComment): Don't check length when
argument is null.
2003-02-21 Mark Wielaard <mark@klomp.org>
* java/util/zip/ZipEntry.java (ZipEntry(String)): When name is bigger
then 65535 chars throw IllegalArgumentException.
......
......@@ -369,7 +369,7 @@ public class ZipEntry implements ZipConstants, Cloneable
*/
public void setComment(String comment)
{
if (comment.length() > 0xffff)
if (comment != null && comment.length() > 0xffff)
throw new IllegalArgumentException();
this.comment = comment;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment