forked from AuroraMiddleware/gtk
inspector: Don't unref NULL objects
When closing the application window before closing the inspector window, the selected widget will be set to NULL once and all the property pages will try to g_object_weak_unref that NULL widget, so bail out in gtk_inspector_prop_list_set_object if it's NULL. https://bugzilla.gnome.org/show_bug.cgi?id=736201
This commit is contained in:
parent
a1af365566
commit
53014d0132
@ -334,7 +334,7 @@ gtk_inspector_prop_list_set_object (GtkInspectorPropList *pl,
|
||||
guint num_properties;
|
||||
guint i;
|
||||
|
||||
if (pl->priv->object == object)
|
||||
if (pl->priv->object == object || !object)
|
||||
return FALSE;
|
||||
|
||||
cleanup_object (pl);
|
||||
|
Loading…
Reference in New Issue
Block a user