Date: Thu, 12 Feb 2004 23:05:46 +0100 From: "Georg-W. Koltermann" <gwk@rahn-koltermann.de> To: freebsd-java@freebsd.org Subject: Re: [PATCH] plugins aborts with SIG11 whan any applet pops up a dialog window Message-ID: <1076623545.17542.14.camel@localhost.muc.eu.mscsoftware.com> In-Reply-To: <1074904754.3751.21.camel@localhost.muc.eu.mscsoftware.com> References: <1074901855.3751.16.camel@localhost.muc.eu.mscsoftware.com> <1074904754.3751.21.camel@localhost.muc.eu.mscsoftware.com>
next in thread | previous in thread | raw e-mail | index | archive | help
It seems I had to fix this myself. Fortunately the fix was simple enough, see below. Please could someone commit this patch. The testcase was in my previous email, if someone wants to verify. BTW, the installation of the jdk14 port installs a few directories with the wrong permissions: drwx------ 4 root wheel 512 12 Feb 22:53 ./jre/plugin/i386 drwx------ 2 root wheel 512 12 Feb 22:54 ./jre/plugin/i386/ns4 drwx------ 2 root wheel 512 12 Feb 22:54 ./jre/plugin/i386/ns610 -- Regards, Georg. ----------------------------------------------------snip--------------------- --- ../../j2se/src/solaris/native/sun/awt/awt_Component.c.gwk Thu Feb 12 18:43:00 2004 +++ ../../j2se/src/solaris/native/sun/awt/awt_Component.c Thu Feb 12 22:38:46 2004 @@ -1179,7 +1179,7 @@ } XtVaSetValues(to, XmNtraversalOn, True, NULL); } - } else if (from != NULL) { + } else if (from != NULL && to != NULL) { // disable the tree starting from uncommon part to 'from' if (parents_from[index] == parents_to[index]) { if (index == count_from - 1) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1076623545.17542.14.camel>