1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 09:29:52 +03:00

src/Cedar/DDNS.c: "interval" is unsigned, so MIN can only return 0

found by coverity
This commit is contained in:
Ilya Shipitsin 2018-08-11 22:27:33 +05:00 committed by Davide Beatrici
parent b8081e239a
commit dd2c1c0dcd

View File

@ -462,7 +462,7 @@ void DCThread(THREAD *thread, void *param)
if (n == 1)
{
interval = MIN(interval, 0);
interval = 0;
}
if (c->Halt)