From 4fcbd4dd4bee8c65b46b7185879c445beae6ca29 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 15 Aug 2005 23:54:34 +0000 Subject: no eFatal when section crc32 is not okay.. i think a eDebug and drop this data packet is enough --- lib/dvb/demux.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp index c3383a7e..bdd8e67d 100644 --- a/lib/dvb/demux.cpp +++ b/lib/dvb/demux.cpp @@ -74,7 +74,10 @@ void eDVBSectionReader::data(int) // this check should never happen unless the driver is crappy! unsigned int c; if ((c = crc32((unsigned)-1, data, r))) - eFatal("crc32 failed! is %x\n", c); + { + eDebug("crc32 failed! is %x\n", c); + return; + } } if (active) read(data); -- cgit v1.2.3