aboutsummaryrefslogtreecommitdiffstats
path: root/src/SongUpdate.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-03-01 00:48:44 +0100
committerMax Kellermann <max@duempel.org>2015-03-01 00:48:44 +0100
commit41cc31c124686304f2ce7098c16ab27b5f88057e (patch)
treec623c1cb9f5be5079fdfaae06155d4432bac6a27 /src/SongUpdate.cxx
parent605af61a0fe77e7155446dab82666d6517d9e4a3 (diff)
downloadmpd-41cc31c124686304f2ce7098c16ab27b5f88057e.tar.gz
mpd-41cc31c124686304f2ce7098c16ab27b5f88057e.tar.xz
mpd-41cc31c124686304f2ce7098c16ab27b5f88057e.zip
SongUpdate: use OpenArchiveInputStream() to open archive file
Don't pass Path::c_str() to tag_stream_scan() which requires a UTF-8 string.
Diffstat (limited to 'src/SongUpdate.cxx')
-rw-r--r--src/SongUpdate.cxx6
1 files changed, 5 insertions, 1 deletions
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 <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);