6440816c7c
removes (indirect) dependencie on the moby/sys/user/userns package, which was retracted and moved to moby/sys/userns - full diff: https://github.com/docker/docker/compare/f3cf9359bdf6...2269acc7a31df0241e9667d5df98be6a4db5ba6a Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
129 B
Go
9 lines
129 B
Go
//go:build linux && gofuzz
|
|
|
|
package userns
|
|
|
|
func FuzzUIDMap(uidmap []byte) int {
|
|
_ = uidMapInUserNS(string(uidmap))
|
|
return 1
|
|
}
|