1
0
mirror of https://github.com/systemd/systemd.git synced 2025-09-10 21:45:06 +03:00

core/cgroup: use > 0 comparison rather than == 1

This commit is contained in:
Mike Yuan
2024-06-02 06:37:08 +08:00
parent 38f3b737dc
commit 8153be97c4

View File

@@ -3549,7 +3549,7 @@ bool unit_maybe_release_cgroup(Unit *u) {
* failed) we need the cgroup paths to continue to be tracked by the manager so they can be looked up
* and cleaned up later. */
r = unit_cgroup_is_empty(u);
if (r == 1) {
if (r > 0) {
unit_release_cgroup(u);
return true;
}