mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
Make GFileIcon more robust
No reason not to survive g_object_unref (g_object_new (...))
This commit is contained in:
parent
34de9189f6
commit
3a37e403e6
@ -120,7 +120,8 @@ g_file_icon_finalize (GObject *object)
|
||||
|
||||
icon = G_FILE_ICON (object);
|
||||
|
||||
g_object_unref (icon->file);
|
||||
if (icon->file)
|
||||
g_object_unref (icon->file);
|
||||
|
||||
G_OBJECT_CLASS (g_file_icon_parent_class)->finalize (object);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user