From: Jaroslav Kysela Date: Thu, 6 Jul 2017 06:53:02 +0000 (+0200) Subject: satip server: don't close session on PLAY, fixes #4471 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa15dfd554e6528c8219c5af30c10b66cf4eac00;p=thirdparty%2Ftvheadend.git satip server: don't close session on PLAY, fixes #4471 --- diff --git a/src/satip/rtsp.c b/src/satip/rtsp.c index 84511ca6e..e08c626d3 100644 --- a/src/satip/rtsp.c +++ b/src/satip/rtsp.c @@ -1428,7 +1428,7 @@ rtsp_process_play(http_connection_t *hc, int cmd) goto end; error: - if (rs) { + if (rs && cmd == RTSP_CMD_SETUP) { rtsp_close_session(rs); rtsp_free_session(rs); }