From: Tobias R. Henle Date: Mon, 5 Apr 2021 19:28:21 +0000 (+0200) Subject: Fix: Handle missing (NULL pointer) output for separator. X-Git-Url: http://git.subgeniuskitty.com/xmenu/.git/commitdiff_plain/2e7a6bdcf3a2656fcabcc51d87ac3faafeaacb2c Fix: Handle missing (NULL pointer) output for separator. --- diff --git a/xmenu.c b/xmenu.c index a4c29e1..9b3a250 100644 --- a/xmenu.c +++ b/xmenu.c @@ -721,8 +721,10 @@ setupmenu(struct Menu *menu, XClassHint *classh) /* set window title (used if wflag is on) */ if (menu->parent == NULL) { title = classh->res_name; - } else { + } else if (menu->caller->output) { title = menu->caller->output; + } else { + title = "\0"; } XStringListToTextProperty(&title, 1, &wintitle);