From 904669f12849b36ff262c877918136b7e82288bf Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Thu, 8 Jun 2017 09:30:08 +0300 Subject: [PATCH] Added extra check of interval --- RewindClient.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RewindClient.c b/RewindClient.c index dd7c00d..fa54ba5 100644 --- a/RewindClient.c +++ b/RewindClient.c @@ -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;