From 66163c1a71f4db7ddccaffcb59317a325503d97c Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Thu, 21 Sep 2023 16:34:40 +0100 Subject: [PATCH] Remove redundant (and now faulty) check to see if the player is also principal conn. --- player.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/player.c b/player.c index 3a2fb382..0cfb3554 100644 --- a/player.c +++ b/player.c @@ -1778,14 +1778,9 @@ double suggested_volume(rtsp_conn_info *conn) { void player_thread_cleanup_handler(void *arg) { rtsp_conn_info *conn = (rtsp_conn_info *)arg; - if ((principal_conn == conn) && (conn != NULL)) { - if (config.output->stop) { - debug(2, "Connection %d: Stop the output backend.", conn->connection_number); - config.output->stop(); - } - } else { - if (conn != NULL) - debug(1, "Connection %d: this conn is not the principal_conn.", conn->connection_number); + if (config.output->stop) { + debug(1, "Connection %d: Stop the output backend.", conn->connection_number); + config.output->stop(); } int oldState; -- 2.47.2