summaryrefslogtreecommitdiff
path: root/programs/gvfs-info.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@src.gnome.org>2007-09-13 14:54:15 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-09-13 14:54:15 +0000
commit33d1f9a219083fb215e322e1519300ba5fcd8e1e (patch)
treeef6ab3cc52edddffc6efbde12ccfabbcf3ebd86e /programs/gvfs-info.c
parent303d63e811693ce7a33f0f5dc9594dab550ff73c (diff)
downloadgvfs-33d1f9a219083fb215e322e1519300ba5fcd8e1e.tar.gz
Make GFileAttributeInfoList refcounted
Original git commit by Alexander Larsson <alexl@redhat.com> at 1188205283 +0200 svn path=/trunk/; revision=801
Diffstat (limited to 'programs/gvfs-info.c')
-rw-r--r--programs/gvfs-info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/gvfs-info.c b/programs/gvfs-info.c
index fc55544d..4e4d3bec 100644
--- a/programs/gvfs-info.c
+++ b/programs/gvfs-info.c
@@ -265,7 +265,7 @@ get_writable_info (GFile *file)
g_free (flags);
}
- g_file_attribute_info_list_free (list);
+ g_file_attribute_info_list_unref (list);
list = g_file_query_writable_namespaces (file, NULL, &error);
if (list == NULL)
@@ -288,7 +288,7 @@ get_writable_info (GFile *file)
}
}
- g_file_attribute_info_list_free (list);
+ g_file_attribute_info_list_unref (list);
}