diff options
-rw-r--r-- | libempathy/empathy-tp-chat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index 431c38290..0cbd5eea3 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -758,6 +758,13 @@ tp_chat_finalize (GObject *object) g_ptr_array_free (priv->properties, TRUE); } + if (priv->initiator) { + g_object_unref (priv->initiator); + } + if (priv->group) { + g_object_unref (priv->group); + } + g_object_unref (priv->factory); g_object_unref (priv->user); g_object_unref (priv->account); |