1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-19 09:47:23 +00:00

CID:1024418 Unintentional integer overflow

This commit is contained in:
Michael Jerris 2014-05-16 20:07:58 +00:00
parent 4238339176
commit 386000d877

@ -3184,7 +3184,7 @@ SWITCH_STANDARD_APP(audio_bridge_function)
}
if (fail) {
int64_t wait = campon_sleep * 1000000;
int64_t wait = (int64_t)campon_sleep * 1000000;
while (stake.running && wait > 0 && switch_channel_ready(caller_channel)) {
switch_yield(100000);