-
Bug
-
Resolution: Fixed
-
P3
-
None
-
b04
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8217536 | 12.0.1 | Lance Andersen | P3 | Resolved | Fixed | b04 |
JDK-8216993 | 12 | Lance Andersen | P3 | Resolved | Fixed | b28 |
In:
Manifest(JarVerifier jv, InputStream is, String jarFilename) throws IOException {
read(is);
this.jarFilename = jarFilename;
this.jv = jv;
}
The jarfile name should be set prior to the call to read().
In fact the handling of jarFilename could be reworked to be more efficient
Manifest(JarVerifier jv, InputStream is, String jarFilename) throws IOException {
read(is);
this.jarFilename = jarFilename;
this.jv = jv;
}
The jarfile name should be set prior to the call to read().
In fact the handling of jarFilename could be reworked to be more efficient
- backported by
-
JDK-8216993 Better error message handling when there is an invalid Manifest
- Resolved
-
JDK-8217536 Better error message handling when there is an invalid Manifest
- Resolved
- relates to
-
JDK-8205525 Improve exception messages during manifest parsing of jar archives
- Resolved