mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 18:31:12 +02:00
sectionsd: don't truncate 64bit value before comparing
Origin commit data
------------------
Commit: d558218115
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-03-05 (Tue, 05 Mar 2013)
This commit is contained in:
@@ -1337,7 +1337,7 @@ void CTimeThread::setSystemTime(time_t tim)
|
||||
#endif
|
||||
if (timediff == 0) /* very unlikely... :-) */
|
||||
return;
|
||||
if (abs(timediff) < 120000000LL) {
|
||||
if (abs(tim - tv.tv_sec) < 120) { /* abs() is int */
|
||||
struct timeval oldd;
|
||||
tv.tv_sec = timediff / 1000000LL;
|
||||
tv.tv_usec = timediff % 1000000LL;
|
||||
|
Reference in New Issue
Block a user