From 41cc31c124686304f2ce7098c16ab27b5f88057e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 1 Mar 2015 00:48:44 +0100 Subject: SongUpdate: use OpenArchiveInputStream() to open archive file Don't pass Path::c_str() to tag_stream_scan() which requires a UTF-8 string. --- src/SongUpdate.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/SongUpdate.cxx') diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx index 2df429175..a8b19a8d1 100644 --- a/src/SongUpdate.cxx +++ b/src/SongUpdate.cxx @@ -37,6 +37,10 @@ #include "TagFile.hxx" #include "TagStream.hxx" +#ifdef ENABLE_ARCHIVE +#include "TagArchive.hxx" +#endif + #include #include #include @@ -140,7 +144,7 @@ Song::UpdateFileInArchive(const Storage &storage) return false; TagBuilder tag_builder; - if (!tag_stream_scan(path_fs.c_str(), full_tag_handler, &tag_builder)) + if (!tag_archive_scan(path_fs, full_tag_handler, &tag_builder)) return false; tag_builder.Commit(tag); -- cgit v1.2.3