ArchiveFile: convert to a class

This commit is contained in:
Max Kellermann
2013-01-29 23:26:51 +01:00
parent ba51045d9e
commit f5c0b0d316
10 changed files with 66 additions and 85 deletions

View File

@@ -40,7 +40,6 @@ input_archive_open(const char *pathname,
GError **error_r)
{
const struct archive_plugin *arplug;
struct archive_file *file;
char *archive, *filename, *suffix, *pname;
struct input_stream *is;
@@ -63,7 +62,7 @@ input_archive_open(const char *pathname,
return NULL;
}
file = archive_file_open(arplug, archive, error_r);
auto file = archive_file_open(arplug, archive, error_r);
if (file == NULL) {
g_free(pname);
return NULL;