summaryrefslogtreecommitdiff
path: root/telepathy-glib/dbus-daemon.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-12-16 18:41:42 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-12-16 18:41:42 +0000
commit53d392c2d3d0b18228a33fecb002bdeb11ee61ed (patch)
tree5270d585050bf7ac28b7dd8aca2d61dc1787d579 /telepathy-glib/dbus-daemon.c
parentb5f91061714d1471fa15a03ea8f1d5179f9693c4 (diff)
downloadtelepathy-glib-53d392c2d3d0b18228a33fecb002bdeb11ee61ed.tar.gz
Fix iteration over arrays of name-owner watches
Also document why we're iterating backwards. In tp_dbus_daemon_maybe_free_name_owner_watch, the flawed reverse-iteration was a bug: we'd skip over the element before a removed entry, which might mean not freeing it. In tp_dbus_daemon_cancel_name_owner_watch, it was done correctly (because there were no deletions), but it did hurt clarity.
Diffstat (limited to 'telepathy-glib/dbus-daemon.c')
-rw-r--r--telepathy-glib/dbus-daemon.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/telepathy-glib/dbus-daemon.c b/telepathy-glib/dbus-daemon.c
index f72ef068f..edc3e68e4 100644
--- a/telepathy-glib/dbus-daemon.c
+++ b/telepathy-glib/dbus-daemon.c
@@ -172,15 +172,18 @@ tp_dbus_daemon_maybe_free_name_owner_watch (TpDBusDaemon *self,
/* Check to see whether this (callback, user_data) pair is in the watch's
* array of callbacks. */
GArray *array = watch->callbacks;
+ /* 1 greater than an index into @array, to avoid it going negative: we
+ * iterate in reverse so we can delete elements without needing to adjust
+ * @i to compensate */
guint i;
if (watch->invoking > 0)
return;
- for (i = 1; i <= array->len; i++)
+ for (i = array->len; i > 0; i--)
{
_NameOwnerSubWatch *entry = &g_array_index (array,
- _NameOwnerSubWatch, array->len - i);
+ _NameOwnerSubWatch, i - 1);
if (entry->callback != NULL)
continue;
@@ -188,7 +191,7 @@ tp_dbus_daemon_maybe_free_name_owner_watch (TpDBusDaemon *self,
if (entry->destroy != NULL)
entry->destroy (entry->user_data);
- g_array_remove_index (array, array->len - i);
+ g_array_remove_index (array, i - 1);
}
if (array->len == 0)
@@ -633,12 +636,14 @@ tp_dbus_daemon_cancel_name_owner_watch (TpDBusDaemon *self,
/* Check to see whether this (callback, user_data) pair is in the watch's
* array of callbacks. */
GArray *array = watch->callbacks;
+ /* 1 greater than an index into @array, to avoid it going negative;
+ * we iterate in reverse to have "last in = first out" as documented. */
guint i;
- for (i = 1; i <= array->len; i++)
+ for (i = array->len; i > 0; i--)
{
_NameOwnerSubWatch *entry = &g_array_index (array,
- _NameOwnerSubWatch, array->len - i);
+ _NameOwnerSubWatch, i - 1);
if (entry->callback == callback && entry->user_data == user_data)
{