Fixed the call to Channels.Unlock() in cEITScanner::Process()

This commit is contained in:
Klaus Schmidinger 2005-06-05 14:44:27 +02:00
parent c1055a6c8f
commit 48a10640e9
3 changed files with 5 additions and 2 deletions

View File

@ -960,6 +960,7 @@ Reinhard Nissl <rnissl@gmx.de>
for some rearrangements in cDvbPlayer::Action() to avoid lockups on NPTL systems 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 for implementing cVideoRepacker in remux.c to make sure every PES packet contains
only data from one frame only data from one frame
for fixing the call to Channels.Unlock() in cEITScanner::Process()
Richard Robson <richard_robson@beeb.net> Richard Robson <richard_robson@beeb.net>
for reporting freezing replay if a timer starts while in Transfer Mode from the for reporting freezing replay if a timer starts while in Transfer Mode from the

View File

@ -3593,3 +3593,5 @@ Video Disk Recorder Revision History
for the bitstreamout plugin (thanks to Werner Fink). for the bitstreamout plugin (thanks to Werner Fink).
- Added the year (two digits) to recording dates in LSTR, and thus also in menus - Added the year (two digits) to recording dates in LSTR, and thus also in menus
(suggested by Jan Ekholm). (suggested by Jan Ekholm).
- Fixed the call to Channels.Unlock() in cEITScanner::Process() (thanks to
Reinhard Nissl).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * 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" #include "eitscan.h"
@ -181,9 +181,9 @@ void cEITScanner::Process(void)
break; break;
} }
} }
Channels.Unlock();
} }
lastScan = time(NULL); lastScan = time(NULL);
Channels.Unlock();
} }
} }
} }