uloop: fix a regression in timeout handling
Variable confusion was breaking timers
Fixes: 368fd26458
("uloop: allow specifying a timeout for uloop_run()")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
6a7fb7d8df
commit
4bc3decf87
1 changed files with 3 additions and 3 deletions
6
uloop.c
6
uloop.c
|
@ -548,9 +548,9 @@ int uloop_run_timeout(int timeout)
|
|||
uloop_gettime(&tv);
|
||||
|
||||
next_time = uloop_get_next_timeout(&tv);
|
||||
if (timeout > 0 && next_time < timeout)
|
||||
timeout = next_time;
|
||||
uloop_run_events(timeout);
|
||||
if (timeout > 0 && timeout < next_time)
|
||||
next_time = timeout;
|
||||
uloop_run_events(next_time);
|
||||
}
|
||||
|
||||
if (!--uloop_run_depth)
|
||||
|
|
Loading…
Reference in a new issue