summaryrefslogtreecommitdiffstats
path: root/gdbus/watch.c
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2010-12-09 21:52:54 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-12-10 00:07:53 +0100
commita437bfba549278f94288870ce812bf11c54a7c07 (patch)
treea41abbc50b54aee253c7c534d757ba1b443e6763 /gdbus/watch.c
parent4a90a2666cc7ab8ab7b3d6e971868a9059a7598d (diff)
downloadofono-a437bfba549278f94288870ce812bf11c54a7c07.tar.bz2
gdbus: fix accessing freed callback data
cb->disc_func or cb->conn_func could remove the callback so this needs to be checked for before continuing processing.
Diffstat (limited to 'gdbus/watch.c')
-rw-r--r--gdbus/watch.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdbus/watch.c b/gdbus/watch.c
index e7c203ae..9cb7ec70 100644
--- a/gdbus/watch.c
+++ b/gdbus/watch.c
@@ -477,6 +477,11 @@ static DBusHandlerResult service_filter(DBusConnection *connection,
cb->conn_func(connection, cb->user_data);
}
+ /* Check if the watch was removed/freed by the callback
+ * function */
+ if (!g_slist_find(data->callbacks, cb))
+ continue;
+
/* Only auto remove if it is a bus name watch */
if (data->argument[0] == ':' &&
(cb->conn_func == NULL || cb->disc_func == NULL)) {
@@ -484,11 +489,6 @@ static DBusHandlerResult service_filter(DBusConnection *connection,
continue;
}
- /* Check if the watch was removed/freed by the callback
- * function */
- if (!g_slist_find(data->callbacks, cb))
- continue;
-
data->callbacks = g_slist_remove(data->callbacks, cb);
data->processed = g_slist_append(data->processed, cb);
}