Remove unnecessary assignment to path

This commit is contained in:
Davor Kapsa
2019-10-10 23:06:17 +02:00
committed by GitHub
parent a5170fd825
commit 53960d48c7
-1
View File
@@ -423,7 +423,6 @@ func resolveSymlinksImpl(root, base, rel string, followCount uint) (string, erro
path := filepath.Join(base, name)
if !strings.HasPrefix(path, root) {
// One cannot '..' their way out of root.
path = root
continue
}
fi, err := os.Lstat(path)