diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-10-03 23:20:18 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-10-03 23:20:18 -0400 |
commit | 7866d4ba21186bb602afd0a716c774fd86f7b2ef (patch) | |
tree | 0a1746320a02f0ae9f8318889cbf782427fa6844 | |
parent | fee46bda00a7e01e8cf22a8972bfac003feda6d6 (diff) | |
download | gtk+-7866d4ba21186bb602afd0a716c774fd86f7b2ef.tar.gz |
Remove an unused variable
-rw-r--r-- | gtk/gtkfilesystem.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkfilesystem.c b/gtk/gtkfilesystem.c index 12e3c8eab3..772618f3d0 100644 --- a/gtk/gtkfilesystem.c +++ b/gtk/gtkfilesystem.c @@ -87,7 +87,6 @@ struct AsyncFuncData GtkFileSystem *file_system; GFile *file; GCancellable *cancellable; - gchar *attributes; gpointer callback; gpointer data; @@ -393,7 +392,6 @@ free_async_data (AsyncFuncData *async_data) g_object_unref (async_data->file); g_object_unref (async_data->cancellable); - g_free (async_data->attributes); g_free (async_data); } |