PlaylistFile: limit variable scope
This commit is contained in:
parent
87a8a3e22f
commit
4ee81e6a3d
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue