aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDebarshi Ray <debarshir@src.gnome.org>2012-10-18 16:55:48 +0800
committerDebarshi Ray <debarshir@src.gnome.org>2012-10-18 17:10:28 +0800
commitae68582193e0d4f49153fd426d5a9eb33d8e0d39 (patch)
treeb9fc263a360a529af37de5c9e7512f62437264cf /src
parent9a7ebcfed29a8bdb46c5d9a2032b14cc67e7ffdf (diff)
downloadgsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.tar
gsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.tar.gz
gsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.tar.bz2
gsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.tar.lz
gsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.tar.xz
gsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.tar.zst
gsoc2013-empathy-ae68582193e0d4f49153fd426d5a9eb33d8e0d39.zip
empathy-call: Free the FsElementAddedNotifiers on fs-conference-removed
Fixes: https://bugzilla.gnome.org/686314
Diffstat (limited to 'src')
-rw-r--r--src/empathy-call-window.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c
index 831872032..f49901b39 100644
--- a/src/empathy-call-window.c
+++ b/src/empathy-call-window.c
@@ -2446,6 +2446,9 @@ empathy_call_window_conference_removed_cb (EmpathyCallHandler *handler,
EmpathyCallWindow *self = EMPATHY_CALL_WINDOW (user_data);
EmpathyCallWindowPriv *priv = GET_PRIV (self);
+ g_list_free_full (priv->notifiers, g_object_unref);
+ priv->notifiers = NULL;
+
gst_bin_remove (GST_BIN (priv->pipeline), conference);
gst_element_set_state (conference, GST_STATE_NULL);
}