mirror of https://github.com/docker/cli.git
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
|
||
|
}
|