mirror of
https://github.com/golang/go
synced 2024-11-05 11:46:12 -07:00
5e66757b83
Crossing Dirent.Reclen boundry was manifested in golang/go#28131 as garbaled filenames, when Dirent.Name was not NULL terminated on FreeBSD due to a bug (parseDirEnt would find a NULL in the following Dirent's Fileno/Reclen fields). Only search for NULL on linux, when the Namlen field is available use it directly instead. Updates golang/go#28131 Change-Id: I64090576c8bad2bd246d1561432bf73d5caee2a9 Reviewed-on: https://go-review.googlesource.com/c/141801 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
14 lines
320 B
Go
14 lines
320 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build darwin freebsd openbsd netbsd
|
|
|
|
package fastwalk
|
|
|
|
import "syscall"
|
|
|
|
func direntNamlen(dirent *syscall.Dirent) uint64 {
|
|
return uint64(dirent.Namlen)
|
|
}
|