1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

Fix the crash when navigate in System->Preferences->Keyboard. Bump the

PORTREVISION.

PR:		ports/108967
Bugzilla:	http://bugzilla.gnome.org/show_bug.cgi?id=370038
Obtained from:	fd.org CVS
Submitted by:	Mark Evenson <mark.evenson@gmx.at>
This commit is contained in:
Jeremy Messenger 2007-02-27 21:02:53 +00:00
parent 9f02d13ad4
commit 071c659525
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=186162
2 changed files with 12 additions and 3 deletions

View File

@ -8,7 +8,7 @@
PORTNAME= libxklavier
PORTVERSION= 2.91
PORTREVISION= 4
PORTREVISION= 5
PORTEPOCH= 1
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}

View File

@ -1,5 +1,14 @@
--- libxklavier/xklavier_config.c 2006-04-15 22:04:38.000000000 -0400
+++ libxklavier/xklavier_config.c 2006-07-08 10:15:17.000000000 -0400
--- libxklavier/xklavier_config.c.orig Sat Apr 15 21:04:38 2006
+++ libxklavier/xklavier_config.c Tue Feb 27 14:57:27 2007
@@ -243,7 +243,7 @@
return FALSE;
nodes = xpath_obj->nodesetval;
- if (nodes != NULL && nodes->nodeTab != NULL) {
+ if (nodes != NULL && nodes->nodeTab != NULL && nodes->nodeNr > 0) {
rv = xkl_read_config_item(*nodes->nodeTab, pitem);
if (pnode != NULL) {
*pnode = *nodes->nodeTab;
@@ -275,7 +275,11 @@
gchar *
xkl_strings_concat_comma_separated(gchar ** array)