AK: Fix adding timeval/timespec

tv_usec and tv_nsec should always be less than one second.
This commit is contained in:
Tom 2020-08-02 16:45:53 -06:00 committed by Andreas Kling
parent 18e8fd333c
commit df3c8267d4

View file

@ -44,7 +44,7 @@ inline void timeval_add(const TimevalType& a, const TimevalType& b, TimevalType&
{
result.tv_sec = a.tv_sec + b.tv_sec;
result.tv_usec = a.tv_usec + b.tv_usec;
if (result.tv_usec > 1'000'000) {
if (result.tv_usec >= 1'000'000) {
++result.tv_sec;
result.tv_usec -= 1'000'000;
}
@ -66,7 +66,7 @@ inline void timespec_add(const TimespecType& a, const TimespecType& b, TimespecT
{
result.tv_sec = a.tv_sec + b.tv_sec;
result.tv_nsec = a.tv_nsec + b.tv_nsec;
if (result.tv_nsec > 1000'000'000) {
if (result.tv_nsec >= 1000'000'000) {
++result.tv_sec;
result.tv_nsec -= 1000'000'000;
}