Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8328995: Launcher can't open jar files where the offset of the manifest is >4GB #18479

Closed
wants to merge 11 commits into from
1 change: 1 addition & 0 deletions src/java.base/share/native/libjli/parse_manifest.c
Original file line number Diff line number Diff line change
@@ -518,6 +518,7 @@ find_file(int fd, zentry *entry, const char *file_name)
free(buffer);
return (-1);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we are missing a break; here, after this inner if block reads the zip64 extra fields and returns JNI_TRUE.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the catch, fixed. It is unnecessary to loop over any other extensions that are present after the zip64 one is found.

break;
}
offset += 4 + headerSize;
}