diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-02-03 17:03:19 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-02-03 17:03:19 +0800 |
commit | 2f700be2db881317f6b02667ab6cf0813f9a492e (patch) | |
tree | fd49b57c05ada94edd78c0d47138aaf7906bea87 | |
parent | e6d0aad4ecfdaa8628692571add867bd17837eda (diff) | |
download | gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.tar gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.tar.gz gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.tar.bz2 gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.tar.lz gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.tar.xz gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.tar.zst gsoc2013-empathy-2f700be2db881317f6b02667ab6cf0813f9a492e.zip |
Don't double-free the EmpathyTpCallStreams
The EmpathyTpCallStreams audio and video streams are freed in _finalize, don't
also free them in dispose
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
svn path=/trunk/; revision=2391
-rw-r--r-- | libempathy/empathy-tp-call.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index a3c31b618..c9fbb9bc2 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -427,9 +427,6 @@ tp_call_dispose (GObject *object) priv->dispose_has_run = TRUE; - g_slice_free (EmpathyTpCallStream, priv->audio); - g_slice_free (EmpathyTpCallStream, priv->video); - if (priv->channel != NULL) { g_signal_handlers_disconnect_by_func (priv->channel, |