mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
Unsigned values are never less than zero
This commit is contained in:
parent
1637a08206
commit
e1a773406d
@ -603,12 +603,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_json_cdr_load)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (globals.retries < 0) {
|
if (globals.retries && globals.delay) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Retries is negative, setting to 0\n");
|
|
||||||
globals.retries = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (globals.retries && globals.delay <= 0) {
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Retries set but delay 0 setting to 5000ms\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Retries set but delay 0 setting to 5000ms\n");
|
||||||
globals.delay = 5000;
|
globals.delay = 5000;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user