-
Bug
-
Resolution: Fixed
-
P3
-
7
-
b78
-
generic
-
generic
-
Not verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2194732 | OpenJDK6 | Jonathan Gibbons | P4 | Resolved | Fixed | b21 |
The following code at line 1005 of ZipFileIndex is clearly wrong.
if (raf == null) {
raf.close();
}
== should be !=
if (raf == null) {
raf.close();
}
== should be !=
- backported by
-
JDK-2194732 stupid typo in ZipFileIndex guarantees NPE
-
- Resolved
-