diff options
author | Matthias Clasen <mclasen@redhat.com> | 2009-09-11 08:18:17 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2009-09-11 08:18:17 -0400 |
commit | 7943231d55859d85e6f12343b8668b660f419f73 (patch) | |
tree | 92587ad187eae4ea619c1be976db9357b3776553 /common | |
parent | b1bc2ec30e6dd97355d550b130c6b5ee24d43d33 (diff) | |
download | gvfs-7943231d55859d85e6f12343b8668b660f419f73.tar.gz |
Fix a ref leak
This leak was pointed out by clang, and reported in bug 594832.
Diffstat (limited to 'common')
-rw-r--r-- | common/gvfsmountinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/gvfsmountinfo.c b/common/gvfsmountinfo.c index 327929f5..6522d19a 100644 --- a/common/gvfsmountinfo.c +++ b/common/gvfsmountinfo.c @@ -510,6 +510,7 @@ find_file_insensitive_exists_callback (GObject *source_object, g_simple_async_result_complete_in_idle (simple); g_object_unref (simple); clear_find_file_insensitive_state (data); + g_object_unref (info); } else |