Inspired by @jnovy comment quote:
"errno can be clobbered by free()"
I searched for some more
% git grep -B1 -P 'crun_make_error.*errno' | grep -A1 release
libcrun/cgroup.c- crun_error_release (err);
libcrun/cgroup.c: return crun_make_error (err, errno, "error when using statfs on `%s`", CGROUP_ROOT "/freezer");
In other words, here is another one:
|
crun_error_release (err); |
|
return crun_make_error (err, errno, "error when using statfs on `%s`", CGROUP_ROOT "/freezer"); |
Inspired by @jnovy comment quote:
"errno can be clobbered by free()"
I searched for some more
In other words, here is another one:
crun/src/libcrun/cgroup.c
Lines 164 to 165 in 96c7f15