Added a null check for the icon info

This commit is contained in:
Scoopta 2019-09-04 16:01:10 -07:00
parent de5da5dd98
commit 52c3c220ba

View File

@ -338,8 +338,12 @@ static void* do_drun(void* data) {
GtkIconTheme* theme = gtk_icon_theme_get_default(); GtkIconTheme* theme = gtk_icon_theme_get_default();
const gchar* const* icon_names = g_themed_icon_get_names(G_THEMED_ICON(icon)); const gchar* const* icon_names = g_themed_icon_get_names(G_THEMED_ICON(icon));
GtkIconInfo* info = gtk_icon_theme_choose_icon(theme, (const gchar**) icon_names, image_size, 0); GtkIconInfo* info = gtk_icon_theme_choose_icon(theme, (const gchar**) icon_names, image_size, 0);
const gchar* icon_path = gtk_icon_info_get_filename(info); if(info == NULL) {
text = utils_concat(4, "img:", icon_path, ":text:", name); text = utils_concat(2, "text:", name);
} else {
const gchar* icon_path = gtk_icon_info_get_filename(info);
text = utils_concat(4, "img:", icon_path, ":text:", name);
}
} else { } else {
text = strdup(name); text = strdup(name);
} }