[Bug 609] Changing the Look and feel crashes the jvm
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Tue Jan 4 12:31:00 PST 2011
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=609
------- Comment #2 from xander at badeend.org 2011-01-04 20:30 -------
Hello Andrew,
I did the same as you and it always crashes... See the results below:
cheers Xander
xander at veronica ~/test $ javac -version
javac 1.6.0_20
xander at veronica ~/test $ java -version
java version "1.6.0_20"
OpenJDK Runtime Environment (IcedTea6 1.9.2) (Gentoo build 1.6.0_20-b20)
OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode)
xander at veronica ~/test $ rm *.class
xander at veronica ~/test $ javac Test.java
xander at veronica ~/test $ ls
Test.class Test.java
xander at veronica ~/test $ java Test
com.sun.java.swing.plaf.gtk.GTKLookAndFeel
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f0a0d95ccc9, pid=4316, tid=139681168054032
#
# JRE version: 6.0_20-b20
# Java VM: OpenJDK 64-Bit Server VM (19.0-b09 mixed mode linux-amd64 )
# Derivative: IcedTea6 1.9.2
# Distribution: Built on Gentoo Base System release 1.12.14 (Thu Nov 25
23:05:49 CET 2010)
# Problematic frame:
# C [libc.so.6+0x77cc9] cfree+0x19
#
# An error report file with more information is saved as:
# /home/xander/test/hs_err_pid4316.log
#
# If you would like to submit a bug report, please include
# instructions how to reproduce the bug and visit:
# http://icedtea.classpath.org/bugzilla
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
Aborted
xander at veronica ~/test $ cat Test.java
import javax.swing.UIManager.LookAndFeelInfo;
public class Test {
public static void main(String[] args) throws Exception {
//Set Look & Feel
try {
LookAndFeelInfo[] lafs =
javax.swing.UIManager.getInstalledLookAndFeels();
String s = lafs[3].getClassName();
System.out.println(s);
javax.swing.UIManager.setLookAndFeel(s);
} catch (Exception e) {
e.printStackTrace();
}
}
}
xander at veronica ~/test $ uname -a
Linux veronica 2.6.37-rc2 #5 SMP Wed Dec 29 21:49:10 CET 2010 x86_64 Intel(R)
Core(TM)2 Duo CPU T6400 @ 2.00GHz GenuineIntel GNU/Linux
xander at veronica ~/test $
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list