Commit a0e34aaa by Bryce McKinlay Committed by Bryce McKinlay

ZipEntry.java (setCrc): Fix overflow.

2000-02-19  Bryce McKinlay  <bryce@albatross.co.nz>

        * java/util/zip/ZipEntry.java (setCrc): Fix overflow.
        (setSize): ditto.

From-SVN: r32062
parent 488d3985
2000-02-19 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/zip/ZipEntry.java (setCrc): Fix overflow.
(setSize): ditto.
2000-02-18 Tom Tromey <tromey@cygnus.com>
* include/jvm.h (_Jv_GetJavaVM): Declare.
......
......@@ -94,7 +94,7 @@ public class ZipEntry implements ZipConstants
public void setCrc (long crc)
{
if (crc < 0 || crc > 0xffffffff)
if (crc < 0 || crc > 0xffffffffL)
throw new IllegalArgumentException ();
this.crc = crc;
}
......@@ -115,7 +115,7 @@ public class ZipEntry implements ZipConstants
public void setSize (long size)
{
if (size < 0 || size > 0xffffffff)
if (size < 0 || size > 0xffffffffL)
throw new IllegalArgumentException ();
this.size = size;
}
......
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