SongUpdate: use OpenArchiveInputStream() to open archive file

Don't pass Path::c_str() to tag_stream_scan() which requires a UTF-8
string.
This commit is contained in:
Max Kellermann
2015-03-01 00:48:44 +01:00
parent 605af61a0f
commit 41cc31c124
4 changed files with 90 additions and 1 deletions

View File

@@ -37,6 +37,10 @@
#include "TagFile.hxx"
#include "TagStream.hxx"
#ifdef ENABLE_ARCHIVE
#include "TagArchive.hxx"
#endif
#include <assert.h>
#include <string.h>
#include <sys/stat.h>
@@ -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);