diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-31 19:00:33 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-01 16:15:40 +0800 |
commit | c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231 (patch) | |
tree | 42ea460187ebb1ae29f0f03514a9a1f59079ebd1 /src | |
parent | 99bda309f129b94db112c52dfa674cd7355f4374 (diff) | |
download | gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.tar gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.tar.gz gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.tar.bz2 gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.tar.lz gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.tar.xz gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.tar.zst gsoc2013-empathy-c34f2be5d70d9a45b953b4f9b0f09b9b1ee4a231.zip |
don't leak the fullscreen window
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-call-window.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 6680d00fe..6a5038d24 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1467,6 +1467,10 @@ empathy_call_window_dispose (GObject *object) g_object_unref (priv->ui_manager); priv->ui_manager = NULL; + if (priv->fullscreen != NULL) + g_object_unref (priv->fullscreen); + priv->fullscreen = NULL; + if (priv->contact != NULL) { g_signal_handlers_disconnect_by_func (priv->contact, |