From fbab468da531c41a516024171e67c2a7088979dd Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 13 Dec 2011 18:17:13 +0000 Subject: [PATCH] g_dbus_action_group_changed: don't leak iterator and its contents Signed-off-by: Simon McVittie Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113 Reviewed-by: Emmanuele Bassi --- gio/gdbusactiongroup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gio/gdbusactiongroup.c b/gio/gdbusactiongroup.c index d84e239ca..016d29312 100644 --- a/gio/gdbusactiongroup.c +++ b/gio/gdbusactiongroup.c @@ -229,6 +229,7 @@ g_dbus_action_group_changed (GDBusConnection *connection, else action_info_free (info); } + g_variant_iter_free (iter); } } }