diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-29 18:50:34 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-29 18:50:34 +0800 |
commit | 4aa24ac253f4bb11dafc41e40cbb9f3913ac7812 (patch) | |
tree | f339414f585f592c26b20649023dbb8718002be2 /src | |
parent | f40cf0ff1690879c6e8f3eec25d203d23777fa80 (diff) | |
download | gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.tar gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.tar.gz gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.tar.bz2 gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.tar.lz gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.tar.xz gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.tar.zst gsoc2013-empathy-4aa24ac253f4bb11dafc41e40cbb9f3913ac7812.zip |
empathy_call_window_dispose: disconnect signals before unrefing the contact
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index a0de80082..22a9eef44 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -731,9 +731,9 @@ empathy_call_window_dispose (GObject *object) if (priv->contact != NULL) { - g_object_unref (priv->contact); g_signal_handlers_disconnect_by_func (priv->contact, contact_name_changed_cb, self); + g_object_unref (priv->contact); priv->contact = NULL; } |