mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
fix xlib timer bug. this is not part of the build.
This commit is contained in:
parent
8cc67d0bc8
commit
c466ab950f
@ -271,7 +271,10 @@ int NS_TimeToNextTimeout(struct timeval *aTimer)
|
||||
return 1;
|
||||
}
|
||||
else {
|
||||
aTimer->tv_sec -= timer->mFireTime.tv_sec;
|
||||
if (aTimer->tv_sec < timer->mFireTime.tv_sec)
|
||||
aTimer->tv_sec = timer->mFireTime.tv_sec - aTimer->tv_sec;
|
||||
else
|
||||
aTimer->tv_sec = 0;
|
||||
// handle the overflow case
|
||||
if (aTimer->tv_usec < timer->mFireTime.tv_usec) {
|
||||
aTimer->tv_usec = timer->mFireTime.tv_usec - aTimer->tv_usec;
|
||||
|
Loading…
x
Reference in New Issue
Block a user