From 3d33f766b76c16c2f003a49823da78ec025cc3a2 Mon Sep 17 00:00:00 2001 From: maazl Date: Sat, 26 Dec 2020 20:07:54 +0100 Subject: [PATCH] Fix rofafor#65 RTSP streams not disconnected on error --- tuner.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tuner.c b/tuner.c index f722c71..89a3623 100644 --- a/tuner.c +++ b/tuner.c @@ -120,13 +120,12 @@ void cSatipTuner::Action(void) break; case tsSet: debug4("%s: tsSet [device %d]", __PRETTY_FUNCTION__, deviceIdM); + Disconnect(); if (Connect()) { tuning.Set(eTuningTimeoutMs); RequestState(tsTuned, smInternal); UpdatePids(true); } - else - Disconnect(); break; case tsTuned: debug4("%s: tsTuned [device %d]", __PRETTY_FUNCTION__, deviceIdM);