mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
gcontenttype: Fix crash in _get_generic_icon_name()
Guard against NULL type being passed to g_content_type_get_generic_icon_name() just as we protect g_content_type_get_description(), otherwise it will cause a crash. See https://gitlab.gnome.org/GNOME/gtk/issues/2482
This commit is contained in:
parent
369626e310
commit
a7181ad397
@ -614,6 +614,8 @@ g_content_type_get_generic_icon_name (const gchar *type)
|
||||
const gchar *xdg_icon_name;
|
||||
gchar *icon_name;
|
||||
|
||||
g_return_val_if_fail (type != NULL, NULL);
|
||||
|
||||
G_LOCK (gio_xdgmime);
|
||||
xdg_icon_name = xdg_mime_get_generic_icon (type);
|
||||
G_UNLOCK (gio_xdgmime);
|
||||
|
Loading…
Reference in New Issue
Block a user