diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-06-05 14:44:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-06-05 14:44:27 +0200 |
commit | 48a10640e9b9fe51ec7e46d1aa32e29ba16774ca (patch) | |
tree | 6ff1d573c95a9a13e9c91ef0e0263c7424e0ee2e /eitscan.c | |
parent | c1055a6c8fdcf71af330e87ccf6874fff5943ed1 (diff) | |
download | vdr-48a10640e9b9fe51ec7e46d1aa32e29ba16774ca.tar.gz vdr-48a10640e9b9fe51ec7e46d1aa32e29ba16774ca.tar.bz2 |
Fixed the call to Channels.Unlock() in cEITScanner::Process()
Diffstat (limited to 'eitscan.c')
-rw-r--r-- | eitscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); } } } |