Oops, need to check for microseconds overflow into full seconds. bug

43789.  r=pavlov.
This commit is contained in:
bryner%uiuc.edu 2000-06-26 06:46:01 +00:00
Родитель 6da0386612
Коммит 40acdc95e8
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -64,6 +64,11 @@ TimeVal TimeVal::operator+(PRUint32 msec) const
t->mSeconds += (PRUint32)(msec / 1000);
t->mUSeconds += (msec % 1000) * 1000;
if (t->mUSeconds >= 1000000) {
t->mUSeconds -= 1000000;
t->mSeconds++;
}
return *t;
}