1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-22 17:35:35 +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
No known key found for this signature in database
GPG Key ID: 417471C0A40F58B3

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;
}