Removes dependency on containerd, as the userns package was migrated to the github.com/moby/sys/userns module. - full diff: https://github.com/docker/docker/compare/v27.1.1...f9522e5e96c3 Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
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
|
|
}
|