Przeglądaj źródła

AK: Fix adding timeval/timespec

tv_usec and tv_nsec should always be less than one second.
Tom 5 lat temu
rodzic
commit
df3c8267d4
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      AK/Time.h

+ 2 - 2
AK/Time.h

@@ -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;
     }