From: Dragos Oancea Date: Tue, 25 Feb 2020 21:45:38 +0000 (+0000) Subject: [mod_verto] scan-build: Value stored to 'status' is never read - verto_read_text_frame() X-Git-Tag: v1.10.3^2~109^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F433%2Fhead;p=thirdparty%2Ffreeswitch.git [mod_verto] scan-build: Value stored to 'status' is never read - verto_read_text_frame() --- diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index f8b297fb8e..85de346b9e 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -5287,7 +5287,7 @@ static switch_status_t verto_read_text_frame(switch_core_session_t *session, swi switch_mutex_lock(tech_pvt->text_cond_mutex); - status = switch_thread_cond_timedwait(tech_pvt->text_cond, tech_pvt->text_cond_mutex, 100000); + switch_thread_cond_timedwait(tech_pvt->text_cond, tech_pvt->text_cond_mutex, 100000); switch_mutex_unlock(tech_pvt->text_cond_mutex); *frame = &tech_pvt->text_read_frame;