Remove an unused struct member
AsyncFuncData.folder was entirely unused. Drop it.
This commit is contained in:
@@ -113,7 +113,6 @@ struct AsyncFuncData
|
||||
{
|
||||
GtkFileSystem *file_system;
|
||||
GFile *file;
|
||||
GtkFolder *folder;
|
||||
GCancellable *cancellable;
|
||||
gchar *attributes;
|
||||
|
||||
@@ -828,9 +827,6 @@ free_async_data (AsyncFuncData *async_data)
|
||||
g_object_unref (async_data->file);
|
||||
g_object_unref (async_data->cancellable);
|
||||
|
||||
if (async_data->folder)
|
||||
g_object_unref (async_data->folder);
|
||||
|
||||
g_free (async_data->attributes);
|
||||
g_free (async_data);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user