Skip to content

Commit 7f53d41

Browse files
authored
Merge pull request #134 from dmcgowan/remove-unnecessary-fs-root-check
Remove unreachable block in fs path cleanup
2 parents 508d86a + 18a1c09 commit 7f53d41

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

fs/path.go

-6
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,6 @@ func walkLink(root, path string, linksWalked *int) (newpath string, islink bool,
248248
if err != nil {
249249
return "", false, err
250250
}
251-
if filepath.IsAbs(newpath) && strings.HasPrefix(newpath, root) {
252-
newpath = newpath[:len(root)]
253-
if !strings.HasPrefix(newpath, "/") {
254-
newpath = "/" + newpath
255-
}
256-
}
257251
*linksWalked++
258252
return newpath, true, nil
259253
}

0 commit comments

Comments
 (0)