-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P2
-
Affects Version/s: 7
-
Component/s: client-libs
TESTCASE:
import java.awt.*;
public class test{
public static final void main(String args[]){
Frame f = new Frame();
FileDialog d = new FileDialog(f);
d.setVisible(true);
}
}
STEPS TO REPRODUCE:
1. a file dialog opens
2. close the dialog by ESC and the dialog hangs
easily reproducible with GTK file dialogs starting from jdk 7 b100
import java.awt.*;
public class test{
public static final void main(String args[]){
Frame f = new Frame();
FileDialog d = new FileDialog(f);
d.setVisible(true);
}
}
STEPS TO REPRODUCE:
1. a file dialog opens
2. close the dialog by ESC and the dialog hangs
easily reproducible with GTK file dialogs starting from jdk 7 b100
- relates to
-
JDK-6959165 JVM crash during execution FileDialogBufferOverflowTest.html
-
- Resolved
-