Mapper: use class Path

This commit is contained in:
Max Kellermann
2015-02-28 22:07:01 +01:00
parent 7a8f96b1dd
commit 44b9197354
3 changed files with 10 additions and 5 deletions

View File

@@ -268,13 +268,15 @@ LoadPlaylistFile(const char *utf8path, Error &error)
if (*s == 0 || *s == PLAYLIST_COMMENT)
continue;
const Path path = Path::FromFS(s);
std::string uri_utf8;
if (!uri_has_scheme(s)) {
#ifdef ENABLE_DATABASE
uri_utf8 = map_fs_to_utf8(s);
uri_utf8 = map_fs_to_utf8(path);
if (uri_utf8.empty()) {
if (PathTraitsFS::IsAbsolute(s)) {
if (path.IsAbsolute()) {
uri_utf8 = PathToUTF8(s);
if (uri_utf8.empty())
continue;
@@ -287,7 +289,7 @@ LoadPlaylistFile(const char *utf8path, Error &error)
continue;
#endif
} else {
uri_utf8 = PathToUTF8(s);
uri_utf8 = path.ToUTF8();
if (uri_utf8.empty())
continue;
}