From 4ee81e6a3d0a6091f9e3e23c0cfd56e59f50a387 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 2 Mar 2015 22:19:47 +0100 Subject: PlaylistFile: limit variable scope --- src/PlaylistFile.cxx | 4 ++-- 1 file 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, -- cgit v1.2.3