From aba7549159dddf5cbab3100168719f69b6c5534e Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 1 May 2024 09:31:38 -0400 Subject: [PATCH] MT#55283 fix wrong codec_chain_stop Change-Id: I54567bbfaaabd55168e528be7e5c1618711238c4 --- daemon/codec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/codec.c b/daemon/codec.c index 09ee9fea0..7e0cabf96 100644 --- a/daemon/codec.c +++ b/daemon/codec.c @@ -3663,8 +3663,8 @@ static void __ssrc_handler_stop(void *p, void *arg) { mutex_unlock(&ch->dtx_buffer->lock); dtx_buffer_stop(&ch->dtx_buffer); - codec_cc_stop(ch->chain); } + codec_cc_stop(ch->chain); } void codec_handlers_stop(codec_handlers_q *q, struct call_media *sink) { for (__auto_type l = q->head; l; l = l->next) {