diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-25 20:40:15 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-26 23:46:19 +0800 |
commit | 0df4d81f42b3657cd466df44ccffb78045e5d8c9 (patch) | |
tree | 90f2f33c86eac011c23c778c665e8b3dace0948b /libempathy/empathy-tp-chat.c | |
parent | 24c980457d575a2574a59d534dc442cf4193b24a (diff) | |
download | gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.tar gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.tar.gz gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.tar.bz2 gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.tar.lz gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.tar.xz gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.tar.zst gsoc2013-empathy-0df4d81f42b3657cd466df44ccffb78045e5d8c9.zip |
empathy-tp-chat: fix leak in dispose
Diffstat (limited to 'libempathy/empathy-tp-chat.c')
-rw-r--r-- | libempathy/empathy-tp-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c index 69554bd8a..e818c779d 100644 --- a/libempathy/empathy-tp-chat.c +++ b/libempathy/empathy-tp-chat.c @@ -694,7 +694,7 @@ tp_chat_dispose (GObject *object) g_object_unref (priv->factory); priv->factory = NULL; - if (priv->user != NULL); + if (priv->user != NULL) g_object_unref (priv->user); priv->user = NULL; |