FULL PRODUCT VERSION :
Java HotSpot(TM) Client VM (1.6.0-rc-b62)
A DESCRIPTION OF THE PROBLEM :
running an application i develop, i chose the "About" menu item, and the VM crashed. that code will have wanted to pull an image from the JAR file, which presumably explains the crash being in ZIP_GetEntry.
i haven't seen this before, and have been running Java 6 weeklies with this application on and off for weeks.
I've got something more useful; it's another similar crash in the same place (in the VM) from a different place (in my code). again, it's loading a class from a JAR file. i've been running this application with Java 6 builds for several weeks, and fairly often too, and these are the only two crashes i've had. they've been the same crash, and they're with the same build.
THE PROBLEM WAS REPRODUCIBLE WITH -Xint FLAG: Did not try
THE PROBLEM WAS REPRODUCIBLE WITH -server FLAG: Did not try
REGRESSION. Last worked in version mustang
ERROR MESSAGES/STACK TRACES THAT OCCUR :
Attached seperately
REPRODUCIBILITY :
This bug can be reproduced rarely.
---------- BEGIN SOURCE ----------
here's a snippet of the code causing the problem:
helpMenuItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String details = PROGRAM_NAME + " (" + PROGRAM_VERSION +
")\n";
details += "Copyright \u00a9 2005 BlueArc\n";
String title = "About " + PROGRAM_NAME;
Icon icon = new LogoIcon();
JOptionPane.showMessageDialog(null, details, title,
JOptionPane.INFORMATION_MESSAGE, icon);
}
});
---------- END SOURCE ----------