1 2 3 4 5 6 7 8
//go:build linux && gofuzz package userns func FuzzUIDMap(uidmap []byte) int { _ = uidMapInUserNS(string(uidmap)) return 1 }