From 1b8a1d4140c58030bc71665eef4dc3485812817e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 17 Oct 2013 00:35:58 +0200 Subject: ArchiveLookup: return const strings --- src/input/ArchiveInputPlugin.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/input') diff --git a/src/input/ArchiveInputPlugin.cxx b/src/input/ArchiveInputPlugin.cxx index a43340994..84f0ca168 100644 --- a/src/input/ArchiveInputPlugin.cxx +++ b/src/input/ArchiveInputPlugin.cxx @@ -45,14 +45,14 @@ input_archive_open(const char *pathname, Error &error) { const struct archive_plugin *arplug; - char *archive, *filename, *suffix, *pname; struct input_stream *is; if (!Path::IsAbsoluteFS(pathname)) return NULL; - pname = g_strdup(pathname); + char *pname = g_strdup(pathname); // archive_lookup will modify pname when true is returned + const char *archive, *filename, *suffix; if (!archive_lookup(pname, &archive, &filename, &suffix)) { FormatDebug(archive_domain, "not an archive, lookup %s failed", pname); -- cgit v1.2.3