aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistFile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/PlaylistFile.cxx')
-rw-r--r--src/PlaylistFile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx
index 7b461e387..f9c3ab3f3 100644
--- a/src/PlaylistFile.cxx
+++ b/src/PlaylistFile.cxx
@@ -181,9 +181,9 @@ LoadPlaylistFileInfo(PlaylistInfo &info,
if (!StringEndsWith(name_fs_str, PLAYLIST_FILE_SUFFIX))
return false;
- const auto path_fs = AllocatedPath::Build(parent_path_fs, name_fs);
FileInfo fi;
- if (!GetFileInfo(path_fs, fi) || !fi.IsRegular())
+ if (!GetFileInfo(AllocatedPath::Build(parent_path_fs, name_fs), fi) ||
+ !fi.IsRegular())
return false;
PathTraitsFS::string name(name_fs_str,