From 94f0a9dd796adc43edd82ab8f2884ce0d38fb5d6 Mon Sep 17 00:00:00 2001 From: Dragos Oancea Date: Fri, 31 Jan 2020 15:07:02 +0000 Subject: [PATCH] [core] scan-build: Value stored to 'timeout' is never read - switch_ivr_park() --- src/switch_ivr.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/switch_ivr.c b/src/switch_ivr.c index a5b7d341db..2c597fae0e 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -989,9 +989,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_park(switch_core_session_t *session, timeout_cause = switch_channel_str2cause(cause_str + 1); } - if ((timeout = atoi(to)) < 0) { - timeout = 0; - } else { + if ((timeout = atoi(to)) >= 0) { expires = switch_epoch_time_now(NULL) + timeout; } switch_channel_set_variable(channel, "park_timeout", NULL);