mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/opencontainers/runc](https://github.com/opencontainers/runc) from 1.0.3 to 1.1.0. - [Release notes](https://github.com/opencontainers/runc/releases) - [Changelog](https://github.com/opencontainers/runc/blob/master/CHANGELOG.md) - [Commits](https://github.com/opencontainers/runc/compare/v1.0.3...v1.1.0) --- updated-dependencies: - dependency-name: github.com/opencontainers/runc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
266 B
Go
17 lines
266 B
Go
//go:build gofuzz
|
|
// +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
|
|
}
|