[Bug 100] Java crashes trying to run topcat

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Sat Jan 19 05:06:32 PST 2008


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=100





------- Comment #2 from aph at redhat.com  2008-01-19 13:06 -------
The crash is here while trying to read the XModifierKeymap:

            XModifierKeymap modmap = new XModifierKeymap(
                 XlibWrapper.XGetModifierMapping(getDisplay()));

            int nkeys = modmap.get_max_keypermod();

            long map_ptr = modmap.get_modifiermap();

            for (int modn = XConstants.Mod1MapIndex;
                 modn <= XConstants.Mod5MapIndex;
                 ++modn)
            {
                for (int i = 0; i < nkeys; ++i) {
                    /* for each keycode attached to this modifier */
                    int keycode = Native.getUByte(map_ptr, modn * nkeys + i);

It looks like get_modifiermap() has returned NULL, which is very odd.

Do any graphical apps run on your system on icedtea?


-- 
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