Removed a redundant NULL check in cDvbSpuDecoder::setTime()

This commit is contained in:
Klaus Schmidinger 2011-12-10 14:40:16 +01:00
parent da352e63c6
commit b25efc415e
3 changed files with 4 additions and 2 deletions

View File

@ -1931,6 +1931,7 @@ Ville Skytt
for changing the default location for the LIRC socket to /var/run/lirc/lircd for changing the default location for the LIRC socket to /var/run/lirc/lircd
for pointing out that the argument sequence in the memset() call in the ctor of for pointing out that the argument sequence in the memset() call in the ctor of
cSatCableNumbers was wrong cSatCableNumbers was wrong
for removing a redundant NULL check in cDvbSpuDecoder::setTime()
Steffen Beyer <cpunk@reactor.de> Steffen Beyer <cpunk@reactor.de>
for fixing setting the colored button help after deleting a recording in case the next for fixing setting the colored button help after deleting a recording in case the next

View File

@ -6791,3 +6791,4 @@ Video Disk Recorder Revision History
link levels (reported by Sundararaj Reel). link levels (reported by Sundararaj Reel).
- Removed redundant memset() in the ctor of cSatCableNumbers (triggered by - Removed redundant memset() in the ctor of cSatCableNumbers (triggered by
Ville Skyttä pointing out that the argument sequence in the call was wrong). Ville Skyttä pointing out that the argument sequence in the call was wrong).
- Removed a redundant NULL check in cDvbSpuDecoder::setTime() (thanks to Ville Skyttä).

View File

@ -8,7 +8,7 @@
* *
* parts of this file are derived from the OMS program. * parts of this file are derived from the OMS program.
* *
* $Id: dvbspu.c 2.8 2010/01/17 13:43:27 kls Exp $ * $Id: dvbspu.c 2.9 2011/12/10 14:39:19 kls Exp $
*/ */
#include "dvbspu.h" #include "dvbspu.h"
@ -496,7 +496,7 @@ int cDvbSpuDecoder::setTime(uint32_t pts)
if (!spu) if (!spu)
return 0; return 0;
if (spu && !clean) if (!clean)
Draw(); Draw();
while (DCSQ_offset != prev_DCSQ_offset) { /* Display Control Sequences */ while (DCSQ_offset != prev_DCSQ_offset) { /* Display Control Sequences */