diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | eitscan.c | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 58927f35..50147899 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -960,6 +960,7 @@ Reinhard Nissl <rnissl@gmx.de> for some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems for implementing cVideoRepacker in remux.c to make sure every PES packet contains only data from one frame + for fixing the call to Channels.Unlock() in cEITScanner::Process() Richard Robson <richard_robson@beeb.net> for reporting freezing replay if a timer starts while in Transfer Mode from the @@ -3593,3 +3593,5 @@ Video Disk Recorder Revision History for the bitstreamout plugin (thanks to Werner Fink). - Added the year (two digits) to recording dates in LSTR, and thus also in menus (suggested by Jan Ekholm). +- Fixed the call to Channels.Unlock() in cEITScanner::Process() (thanks to + Reinhard Nissl). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: eitscan.c 1.24 2005/05/05 13:05:00 kls Exp $ + * $Id: eitscan.c 1.25 2005/06/05 14:43:29 kls Exp $ */ #include "eitscan.h" @@ -181,9 +181,9 @@ void cEITScanner::Process(void) break; } } + Channels.Unlock(); } lastScan = time(NULL); - Channels.Unlock(); } } } |