1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-11 05:17:44 +03:00

time-util: Fix overflow check introduce in commit f977849 (#5216)

This commit is contained in:
Benjamin Robin 2017-02-03 16:13:55 +01:00 committed by Lennart Poettering
parent 5c1d991f40
commit d201d90838

View File

@ -212,7 +212,7 @@ struct timespec *timespec_store(struct timespec *ts, usec_t u) {
assert(ts);
if (u == USEC_INFINITY ||
u / USEC_INFINITY >= TIME_T_MAX) {
u / USEC_PER_SEC >= TIME_T_MAX) {
ts->tv_sec = (time_t) -1;
ts->tv_nsec = (long) -1;
return ts;