aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-02-03 17:03:51 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-03 17:03:51 +0800
commitfda12dbd7f481a09a160c21fcf840af4ebaa2201 (patch)
tree37af54b08dbd83c5f56055ea7b029a2e93799f82 /libempathy
parent040bdefb958b459b8f42aaa7ee39a2a73f9e287a (diff)
downloadgsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.tar
gsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.tar.gz
gsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.tar.bz2
gsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.tar.lz
gsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.tar.xz
gsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.tar.zst
gsoc2013-empathy-fda12dbd7f481a09a160c21fcf840af4ebaa2201.zip
Also unref the tf channel
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk> svn path=/trunk/; revision=2401
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-call-handler.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c
index 449891825..a6117cd19 100644
--- a/libempathy/empathy-call-handler.c
+++ b/libempathy/empathy-call-handler.c
@@ -189,7 +189,13 @@ empathy_call_handler_dispose (GObject *object)
if (priv->contact != NULL)
g_object_unref (priv->contact);
- /* FIXME close the call ? */
+ priv->contact = NULL;
+
+ if (priv->tfchannel != NULL)
+ g_object_unref (priv->tfchannel);
+
+ priv->tfchannel = NULL;
+
if (priv->call != NULL)
{
empathy_tp_call_close (priv->call);