Commit 2fb931d0 authored by Alex Brainman's avatar Alex Brainman

path/filepath: remove code working around Join bug

EvalSymlinks code assumes that Join has a bug
(see issue #11551 for details). But issue #11551 has
been fixed. Remove the workaround so it does not
confuses us when we read code next time.

Change-Id: I06bea20189f01f9922237c05516847353d8e4736
Reviewed-on: https://go-review.googlesource.com/17620Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent d8608803
......@@ -59,8 +59,7 @@ func walkLinks(path string, linksWalked *int) (string, error) {
return newpath, err
case file == "":
if isDriveLetter(dir) {
// appending "." to avoid bug in Join (see issue 11551)
return dir + ".", nil
return dir, nil
}
if os.IsPathSeparator(dir[len(dir)-1]) {
if isRoot(dir) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment