diff options
-rw-r--r-- | libempathy-gtk/empathy-contact-selector.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-selector.c b/libempathy-gtk/empathy-contact-selector.c index 1a8954d02..322fedc24 100644 --- a/libempathy-gtk/empathy-contact-selector.c +++ b/libempathy-gtk/empathy-contact-selector.c @@ -339,7 +339,11 @@ empathy_contact_selector_dispose (GObject *object) EmpathyContactSelector *selector = EMPATHY_CONTACT_SELECTOR (object); EmpathyContactSelectorPriv *priv = GET_PRIV (selector); - g_object_unref (priv->store); + if (priv->store) + { + g_object_unref (priv->store); + priv->store = NULL; + } (G_OBJECT_CLASS (empathy_contact_selector_parent_class)->dispose) (object); } |