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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -423,7 +423,6 @@ func resolveSymlinksImpl(root, base, rel string, followCount uint) (string, erro
path := filepath.Join(base, name) path := filepath.Join(base, name)
if !strings.HasPrefix(path, root) { if !strings.HasPrefix(path, root) {
// One cannot '..' their way out of root. // One cannot '..' their way out of root.
path = root
continue continue
} }
fi, err := os.Lstat(path) fi, err := os.Lstat(path)