You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This does arithmetic at type time_t. If that's 32-bit, this will overflow in a few seconds. It should use 64-bit arithmetic explicitly, either with casts or temporaries, e.g:
mtime_stubs.c calculates time in nanoseconds using:
This does arithmetic at type
time_t
. If that's 32-bit, this will overflow in a few seconds. It should use 64-bit arithmetic explicitly, either with casts or temporaries, e.g:or
My system has a 64-bit
time_t
, so I haven't actually tested any of this :)The text was updated successfully, but these errors were encountered: