From: Jaroslav Kysela Date: Thu, 20 Dec 2018 19:32:33 +0000 (+0100) Subject: satip server: fix ATSC-T / Annex B cable frequency parsing, fixes #5447 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=833821fc6e556a455e3f6cfcb935e50dd82632bf;p=thirdparty%2Ftvheadend.git satip server: fix ATSC-T / Annex B cable frequency parsing, fixes #5447 --- diff --git a/src/satip/rtsp.c b/src/satip/rtsp.c index 483263d41..bafe1179e 100644 --- a/src/satip/rtsp.c +++ b/src/satip/rtsp.c @@ -1207,6 +1207,8 @@ rtsp_parse_cmd } else if (msys == DVB_SYS_ATSC || msys == DVB_SYS_DVBC_ANNEX_B) { + freq *= 1000; + if (freq < 0) goto end; if (!TAILQ_EMPTY(&hc->hc_req_args)) goto eargs; } else {