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:
parent
b8081e239a
commit
dd2c1c0dcd
@ -462,7 +462,7 @@ void DCThread(THREAD *thread, void *param)
|
||||
|
||||
if (n == 1)
|
||||
{
|
||||
interval = MIN(interval, 0);
|
||||
interval = 0;
|
||||
}
|
||||
|
||||
if (c->Halt)
|
||||
|
Loading…
Reference in New Issue
Block a user