aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-03-08 23:39:29 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-03-15 16:28:41 +0800
commit27591216de0bdbf8cfecd562414faa34138a1a52 (patch)
tree09f328fb79b0f6bd1c09e993b4da8f3c182e9091
parent52d2d0aff0c3a8bbbdd433bb63434207c2e74001 (diff)
downloadgsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.tar
gsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.tar.gz
gsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.tar.bz2
gsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.tar.lz
gsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.tar.xz
gsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.tar.zst
gsoc2013-empathy-27591216de0bdbf8cfecd562414faa34138a1a52.zip
check that logger is not NULL before unrefing it
-rw-r--r--libempathy/empathy-contact-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-contact-manager.c b/libempathy/empathy-contact-manager.c
index d0ba13054..fd7b08b14 100644
--- a/libempathy/empathy-contact-manager.c
+++ b/libempathy/empathy-contact-manager.c
@@ -375,7 +375,8 @@ contact_manager_finalize (GObject *object)
tp_proxy_signal_connection_disconnect (priv->favourite_contacts_changed_signal);
- g_object_unref (priv->logger);
+ if (priv->logger != NULL)
+ g_object_unref (priv->logger);
g_hash_table_foreach (priv->lists,
contact_manager_disconnect_foreach,