linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dvb-core/dvb_demux.c: Fix receiving invalid EIT-sections
@ 2019-11-21 15:19 Johann Friedrichs
  0 siblings, 0 replies; only message in thread
From: Johann Friedrichs @ 2019-11-21 15:19 UTC (permalink / raw)
  To: linux-media

Signed-off-by: Johann Friedrichs <johann.friedrichs@web.de>

Resetting buf without resetting pusi_seen at a channel-switch can lead
to copying the rest of a section to the start of buf, but treating it as
a complete section, when the next pusi arrives.
EIT-sections starting without valid header were randomly received during
an EIT-scan
on a transponder.
---
  drivers/media/dvb-core/dvb_demux.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/drivers/media/dvb-core/dvb_demux.c
b/drivers/media/dvb-core/dvb_demux.c
index 39a2c6ccf31d..5fde1d38b3e3 100644
--- a/drivers/media/dvb-core/dvb_demux.c
+++ b/drivers/media/dvb-core/dvb_demux.c
@@ -971,6 +971,7 @@ static int dmx_section_feed_start_filtering(struct
dmx_section_feed *feed)
      dvbdmxfeed->feed.sec.secbuf = dvbdmxfeed->feed.sec.secbuf_base;
      dvbdmxfeed->feed.sec.secbufp = 0;
      dvbdmxfeed->feed.sec.seclen = 0;
+    dvbdmxfeed->pusi_seen = false;

      if (!dvbdmx->start_feed) {
          mutex_unlock(&dvbdmx->mutex);
--
2.17.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-11-21 15:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-21 15:19 [PATCH] dvb-core/dvb_demux.c: Fix receiving invalid EIT-sections Johann Friedrichs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).