summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2013-12-08 13:51:38 +0000
committerokan <okan>2013-12-08 13:51:38 +0000
commit7fad5224d47aba47d4fe02d2ce2b20e058bdedc0 (patch)
treeaddb8650c8eb8acf21c02fed8c6231e321051121
parent5dc65d9242c423fd4f45ec48c32e525d9f1300f2 (diff)
downloadcwm-cn-bisectgtkbug.tar.gz
cwm-cn-bisectgtkbug.tar.xz
cwm-cn-bisectgtkbug.zip
If not using sticky mode (the default), clients aren't automagically cn-bisectgtkbug
assigned a group, thus cc->group will be NULL - fix the client group
shortcut in menu lists; crash reported by Christian Neukirchen.
-rw-r--r--mousefunc.c4
-rw-r--r--search.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/mousefunc.c b/mousefunc.c
index 05cdfe2..f465802 100644
--- a/mousefunc.c
+++ b/mousefunc.c
@@ -231,8 +231,8 @@ mousefunc_menu_unhide(struct client_ctx *cc, void *arg)
 				continue;
 
 			mi = xcalloc(1, sizeof(*mi));
-			(void)snprintf(mi->text, sizeof(mi->text),
-			    "(%d) %s", cc->group->shortcut, wname);
+			(void)snprintf(mi->text, sizeof(mi->text), "(%d) %s",
+			    cc->group ? cc->group->shortcut : 0, wname);
 			mi->ctx = cc;
 			TAILQ_INSERT_TAIL(&menuq, mi, entry);
 		}
diff --git a/search.c b/search.c
index 4d5a7c1..483a51b 100644
--- a/search.c
+++ b/search.c
@@ -143,7 +143,7 @@ search_print_client(struct menu *mi, int list)
 		cc->matchname = cc->name;
 
 	(void)snprintf(mi->print, sizeof(mi->print), "(%d) %c%s",
-	    cc->group->shortcut, flag, cc->matchname);
+	    cc->group ? cc->group->shortcut : 0, flag, cc->matchname);
 
 	if (!list && cc->matchname != cc->name &&
 	    strlen(mi->print) < sizeof(mi->print) - 1) {