aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <gdesmott@gnome.org>2009-02-17 05:25:14 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-02-17 05:25:14 +0800
commit7986241858867de3b4c66f0f67173c340734dcb4 (patch)
tree2aae5f5bf123fc40a982a7f5797f7e0f7834e686 /libempathy
parent57421f481723492fc5a25391697316871fc69094 (diff)
downloadgsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.tar
gsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.tar.gz
gsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.tar.bz2
gsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.tar.lz
gsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.tar.xz
gsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.tar.zst
gsoc2013-empathy-7986241858867de3b4c66f0f67173c340734dcb4.zip
empathy-dispatcher: deal properly with NULL channel_wrapper
From: Guillaume Desmottes <gdesmott@gnome.org> svn path=/trunk/; revision=2487
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-dispatcher.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c
index 06dafa43c..ab00503c8 100644
--- a/libempathy/empathy-dispatcher.c
+++ b/libempathy/empathy-dispatcher.c
@@ -121,7 +121,8 @@ new_dispatch_data (TpChannel *channel,
{
DispatchData *d = g_slice_new0 (DispatchData);
d->channel = g_object_ref (channel);
- d->channel_wrapper = g_object_ref (channel_wrapper);
+ if (channel_wrapper != NULL)
+ d->channel_wrapper = g_object_ref (channel_wrapper);
return d;
}
@@ -130,7 +131,8 @@ static void
free_dispatch_data (DispatchData *data)
{
g_object_unref (data->channel);
- g_object_unref (data->channel_wrapper);
+ if (data->channel_wrapper != NULL)
+ g_object_unref (data->channel_wrapper);
g_slice_free (DispatchData, data);
}