diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2021-04-09 10:07:46 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2021-04-09 10:09:54 +0200 |
commit | ce747466a9ec44b97dac96ab39c31e06ae761fde (patch) | |
tree | 1ce3c8399cc34dcf4c83955bd3f27ea997baed27 /pkg/cgroups/cgroups.go | |
parent | 4efac1f76012c35122bca7c8feebc33141fc47d3 (diff) | |
download | podman-ce747466a9ec44b97dac96ab39c31e06ae761fde.tar.gz podman-ce747466a9ec44b97dac96ab39c31e06ae761fde.tar.bz2 podman-ce747466a9ec44b97dac96ab39c31e06ae761fde.zip |
cgroups: force 64 bits to ParseUint
[NO TESTS NEEDED]
force bitsSize==64 so that the string is always parsed to a uint64
instead of using the native int size, that could be not big enough on
32 bits arches.
Closes: https://github.com/containers/podman/issues/9979
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'pkg/cgroups/cgroups.go')
-rw-r--r-- | pkg/cgroups/cgroups.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/cgroups/cgroups.go b/pkg/cgroups/cgroups.go index 608e1647a..aefb5183b 100644 --- a/pkg/cgroups/cgroups.go +++ b/pkg/cgroups/cgroups.go @@ -265,7 +265,7 @@ func readFileAsUint64(path string) (uint64, error) { if v == "max" { return math.MaxUint64, nil } - ret, err := strconv.ParseUint(v, 10, 0) + ret, err := strconv.ParseUint(v, 10, 64) if err != nil { return ret, errors.Wrapf(err, "parse %s from %s", v, path) } |