1 //go:build gofuzz 2 // +build gofuzz 3 4 package userns 5 6 import ( 7 "strings" 8 9 "github.com/opencontainers/runc/libcontainer/user" 10 ) 11 12 func FuzzUIDMap(data []byte) int { 13 uidmap, _ := user.ParseIDMap(strings.NewReader(string(data))) 14 _ = uidMapInUserNS(uidmap) 15 return 1 16 } 17