diff options
author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-02-29 12:46:33 +0100 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-03-01 15:06:43 +0100 |
commit | 9d7c9000c3bde077cb4e04eab38998280daa50b0 (patch) | |
tree | dd2c6d0f8acfbcfae715bc6a35eb49cc19462e30 | |
parent | bfc7e605e5bae1134ec1c9e30274b80c7f62f917 (diff) |
spice: fix double unref of main channel
When doing unref() on a channel, channel-destroy signal may be emitted
during object dispose time, and it will attempt to unref() the channel
again likely leading to a crash.
It may be that spice-gtk should have a different/simpler object
life-cycle model, but it's also a good assumption to not take strong
references on the channels, but just keep a weak reference as the
session is really the channel life-cycle manager.
https://bugzilla.redhat.com/show_bug.cgi?id=797082
-rw-r--r-- | src/virt-viewer-session-spice.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/virt-viewer-session-spice.c b/src/virt-viewer-session-spice.c index cb7e000..eacb6e6 100644 --- a/src/virt-viewer-session-spice.c +++ b/src/virt-viewer-session-spice.c @@ -111,8 +111,6 @@ virt_viewer_session_spice_dispose(GObject *obj) } if (spice->priv->audio) g_object_unref(spice->priv->audio); - if (spice->priv->main_channel) - g_object_unref(spice->priv->main_channel); if (spice->priv->main_window) g_object_unref(spice->priv->main_window); @@ -386,16 +384,13 @@ virt_viewer_session_spice_channel_new(SpiceSession *s, g_object_get(channel, "channel-id", &id, NULL); if (SPICE_IS_MAIN_CHANNEL(channel)) { - if (self->priv->main_channel != NULL) { - /* FIXME: use telepathy-glib g_signal_connect_object to automatically disconnect.. */ + if (self->priv->main_channel != NULL) g_signal_handlers_disconnect_by_func(self->priv->main_channel, virt_viewer_session_spice_main_channel_event, self); - g_object_unref(self->priv->main_channel); - } g_signal_connect(channel, "channel-event", G_CALLBACK(virt_viewer_session_spice_main_channel_event), self); - self->priv->main_channel = g_object_ref(channel); + self->priv->main_channel = SPICE_MAIN_CHANNEL(channel); } if (SPICE_IS_DISPLAY_CHANNEL(channel)) { @@ -439,10 +434,8 @@ virt_viewer_session_spice_channel_destroy(G_GNUC_UNUSED SpiceSession *s, g_object_get(channel, "channel-id", &id, NULL); if (SPICE_IS_MAIN_CHANNEL(channel)) { DEBUG_LOG("zap main channel"); - if (channel == SPICE_CHANNEL(self->priv->main_channel)) { - g_object_unref(self->priv->main_channel); + if (channel == SPICE_CHANNEL(self->priv->main_channel)) self->priv->main_channel = NULL; - } } if (SPICE_IS_DISPLAY_CHANNEL(channel)) { |