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
This commit is contained in:
committed by
Bryce McKinlay
parent
488d3985f2
commit
a0e34aaae4
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user