mirror of
https://github.com/golang/go
synced 2024-11-18 13:14:47 -07:00
dwarf: improve the efficiency of string comparison
The existing implementation uses strings.ToLower() on 2 strings before comparing them, which is slower than strings.EqualFold() in all cases.
This commit is contained in:
parent
722b0e32ba
commit
dc51b9b425
@ -806,7 +806,7 @@ func pathJoin(dirname, filename string) string {
|
||||
// DOS-style path.
|
||||
drive2, filename := splitDrive(filename)
|
||||
if drive2 != "" {
|
||||
if strings.ToLower(drive) != strings.ToLower(drive2) {
|
||||
if !strings.EqualFold(drive, drive2) {
|
||||
// Different drives. There's not much we can
|
||||
// do here, so just ignore the directory.
|
||||
return drive2 + filename
|
||||
|
Loading…
Reference in New Issue
Block a user