diff options
author | Marco Barisione <marco@barisione.org> | 2007-10-04 01:12:26 +0800 |
---|---|---|
committer | Marco Barisione <mbari@src.gnome.org> | 2007-10-04 01:12:26 +0800 |
commit | d72774ce1ae05aa40ad6d8183323deb203155018 (patch) | |
tree | 21b4d3d56efe56d252bd30b335283f9805496a98 /libempathy/empathy-tp-call.c | |
parent | 8e87910f8c6842af6f2d060173ebf4bbc08f2ebd (diff) | |
download | gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.tar gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.tar.gz gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.tar.bz2 gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.tar.lz gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.tar.xz gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.tar.zst gsoc2013-empathy-d72774ce1ae05aa40ad6d8183323deb203155018.zip |
Initialize every GError to NULL. Fixes bug #482889.
2007-10-03 Marco Barisione <marco@barisione.org>
* libempathy/empathy-contact-factory.c:
* libempathy/empathy-tp-call.c:
* libempathy/empathy-tp-group.c:
* libempathy/empathy-utils.c: Initialize every GError to NULL. Fixes
bug #482889.
svn path=/trunk/; revision=360
Diffstat (limited to 'libempathy/empathy-tp-call.c')
-rw-r--r-- | libempathy/empathy-tp-call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index e0347ba9a..d4298a26c 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -379,7 +379,7 @@ tp_call_finalize (GObject *object) empathy_debug (DEBUG_DOMAIN, "Finalizing: %p", object); if (priv->tp_chan) { - GError *error; + GError *error = NULL; g_signal_handlers_disconnect_by_func (priv->tp_chan, tp_call_destroy_cb, |