From 447246da741da9126aadb41c98a9179290bbcd86 Mon Sep 17 00:00:00 2001 From: Pavel Vasin Date: Wed, 13 Jun 2012 16:49:20 +0400 Subject: [PATCH] shell-util: fix GFile leak https://bugzilla.gnome.org/show_bug.cgi?id=678079 --- src/shell-util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shell-util.c b/src/shell-util.c index bd211f013..12f057283 100644 --- a/src/shell-util.c +++ b/src/shell-util.c @@ -96,6 +96,7 @@ shell_util_get_file_display_for_common_files (GFile *file) * nautilus */ return g_strdup (_("Home")); } + g_object_unref (compare); compare = g_file_new_for_path ("/"); if (g_file_equal (file, compare))