mirror of
https://github.com/containers/crun.git
synced 2026-02-06 09:46:18 +01:00
In `container_delete`, the type used for the `force` boolean should be `b` (a single unsigned byte) instead of `n` (the size of `size_t`). This incorrect type can cause the neighboring `id` argument to be overwritten with a NULL value, which makes the container deletion fail. Signed-off-by: Mattéo Delabre <git.matteo@delab.re>