1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-30 06:25:37 +03:00

udev: do not try to process events if there is no free worker

This commit is contained in:
Yu Watanabe 2021-06-17 15:51:34 +09:00
parent f2a5412bf2
commit 5f4bca9dcc

View File

@ -924,7 +924,7 @@ static int event_queue_start(Manager *manager) {
continue;
r = event_run(event);
if (r < 0)
if (r <= 0)
return r;
}