summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@overt.org>2013-03-23 22:55:40 -0700
committerTomas Bzatek <tbzatek@redhat.com>2013-04-02 12:15:44 +0200
commitadbe1bade2d3d9ba41c29d745cfa5ae433063554 (patch)
tree0c9aedcb413088b9650f7f467418567c8400209b
parente9ba3d8951d83c1e3be14ba6ed60b72906ffff0f (diff)
downloadgvfs-adbe1bade2d3d9ba41c29d745cfa5ae433063554.tar.gz
Daemon: Ensure monitors are not prematurally finalized.
If a monitor is being cleaned up due to the backend disappearing, we could see the monitor being finalized as a result of removing a subscriber, leading to a segfault as it continues to access its internal state. https://bugzilla.gnome.org/show_bug.cgi?id=696479
-rw-r--r--daemon/gvfsmonitor.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/daemon/gvfsmonitor.c b/daemon/gvfsmonitor.c
index 12ec6b99..cdf0dc2a 100644
--- a/daemon/gvfsmonitor.c
+++ b/daemon/gvfsmonitor.c
@@ -71,7 +71,14 @@ backend_died (GVfsMonitor *monitor,
GObject *old_backend)
{
Subscriber *subscriber;
-
+
+ /*
+ * Take an extra ref on the monitor because
+ * unsubscribing may lead to the last ref
+ * being released.
+ */
+ g_object_ref (G_OBJECT (monitor));
+
monitor->priv->backend = NULL;
while (monitor->priv->subscribers != NULL)
@@ -79,6 +86,8 @@ backend_died (GVfsMonitor *monitor,
subscriber = monitor->priv->subscribers->data;
unsubscribe (subscriber);
}
+
+ g_object_unref (G_OBJECT (monitor));
}
static void