mirror of
https://github.com/containers/podman.git
synced 2025-12-15 03:18:45 +08:00
Bumps [github.com/opencontainers/runc](https://github.com/opencontainers/runc) from 1.0.0-rc93 to 1.0.0-rc94. - [Release notes](https://github.com/opencontainers/runc/releases) - [Commits](https://github.com/opencontainers/runc/compare/v1.0.0-rc93...v1.0.0-rc94) Signed-off-by: dependabot[bot] <support@github.com>
16 lines
248 B
Go
16 lines
248 B
Go
// +build gofuzz
|
|
|
|
package userns
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/opencontainers/runc/libcontainer/user"
|
|
)
|
|
|
|
func FuzzUIDMap(data []byte) int {
|
|
uidmap, _ := user.ParseIDMap(strings.NewReader(string(data)))
|
|
_ = uidMapInUserNS(uidmap)
|
|
return 1
|
|
}
|