aboutsummaryrefslogtreecommitdiffstats
path: root/search.c
diff options
context:
space:
mode:
authorokan2013-12-08 13:51:38 +0000
committerokan2013-12-08 13:51:38 +0000
commit47cab12c79888734f79ac0f19e11b2ea7ba712ad (patch)
tree532cf284c737ce967b55e9054c5cd1c006195227 /search.c
parent1b52a28e341778e2233373eba9be8625358a19c0 (diff)
downloadcwm-47cab12c79888734f79ac0f19e11b2ea7ba712ad.tar.gz
If not using sticky mode (the default), clients aren't automagically
assigned a group, thus cc->group will be NULL - fix the client group shortcut in menu lists; crash reported by Christian Neukirchen.
Diffstat (limited to '')
-rw-r--r--search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/search.c b/search.c
index 5c4483f..d0bf4f9 100644
--- a/search.c
+++ b/search.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: search.c,v 1.32 2013/12/02 19:30:27 okan Exp $
+ * $OpenBSD: search.c,v 1.33 2013/12/08 13:51:38 okan Exp $
*/
#include <sys/param.h>
@@ -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) {