Merge branch 'v0.21.x' into master

This commit is contained in:
Max Kellermann
2020-09-17 14:43:05 +02:00
6 changed files with 82 additions and 46 deletions

View File

@@ -50,9 +50,7 @@ gcc_pure
static bool
SkipNameFS(PathTraitsFS::const_pointer name_fs) noexcept
{
return name_fs[0] == '.' &&
(name_fs[1] == 0 ||
(name_fs[1] == '.' && name_fs[2] == 0));
return PathTraitsFS::IsSpecialFilename(name_fs);
}
gcc_pure