From: Andreas Monzner Date: Mon, 15 Aug 2005 23:54:34 +0000 (+0000) Subject: no eFatal when section crc32 is not okay.. i think a eDebug and drop this data packet... X-Git-Tag: 2.6.0~5751 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/4fcbd4dd4bee8c65b46b7185879c445beae6ca29 no eFatal when section crc32 is not okay.. i think a eDebug and drop this data packet is enough --- 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);