4
Fork 0

Added extra check of interval

This commit is contained in:
Artem Prilutskiy 2017-06-08 09:30:08 +03:00
parent d7b3f4be2b
commit 904669f128

View file

@ -300,6 +300,9 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP
struct timeval threshold1;
struct timeval threshold2;
if (interval1 < RECEIVE_TIMEOUT)
interval1 = RECEIVE_TIMEOUT;
gettimeofday(&now, NULL);
threshold1.tv_sec = now.tv_sec + interval1 + interval2;