From 1cf2bb66469eb619e0422fe71a356738c6907e0e Mon Sep 17 00:00:00 2001 From: Pavel Vasin Date: Wed, 13 Jun 2012 14:48:23 +0400 Subject: [PATCH] ShellContactSystem: fix GeeMapIterator leak https://bugzilla.gnome.org/show_bug.cgi?id=678079 --- src/shell-contact-system.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shell-contact-system.c b/src/shell-contact-system.c index 8d5109fb0..88d329ec3 100644 --- a/src/shell-contact-system.c +++ b/src/shell-contact-system.c @@ -463,6 +463,8 @@ shell_contact_system_initial_search (ShellContactSystem *self, g_object_unref (individual); } + g_object_unref (iter); + return sort_and_prepare_results (results); }