mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed processing the last entry in the scan list of the EIT scanner
This commit is contained in:
parent
235c652648
commit
61ea56a1bd
@ -3571,6 +3571,7 @@ Helmut Binder <cco@aon.at>
|
||||
for deactivating MTD support if a non MCD capable CAM is inserted after removing
|
||||
a previously used CAM that is MCD capable
|
||||
for fixing accessing the actual frontend on multi frontend devices
|
||||
for fixing processing the last entry in the scan list of the EIT scanner
|
||||
|
||||
Ulrich Eckhardt <uli@uli-eckhardt.de>
|
||||
for reporting a problem with shutdown after user inactivity in case a plugin is
|
||||
|
4
HISTORY
4
HISTORY
@ -9348,7 +9348,7 @@ Video Disk Recorder Revision History
|
||||
Senzel).
|
||||
- Official release.
|
||||
|
||||
2019-03-11: Version 2.4.1
|
||||
2019-03-12: Version 2.4.1
|
||||
|
||||
- Fixed handling the tfRecording flag in the SVDRP commands MODT and UPDT (reported
|
||||
by Johann Friedrichs).
|
||||
@ -9376,3 +9376,5 @@ Video Disk Recorder Revision History
|
||||
- Fixed accessing the actual frontend on multi frontend devices (thanks to Helmut Binder).
|
||||
- Fixed opening the UDP port in peerdemo (thanks to Robert Hannebauer).
|
||||
- Fixed handling PATs that contain no PMTs.
|
||||
- Fixed processing the last entry in the scan list of the EIT scanner (thanks to
|
||||
Helmut Binder).
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: eitscan.c 4.2 2015/09/10 11:05:03 kls Exp $
|
||||
* $Id: eitscan.c 4.3 2019/03/12 11:46:05 kls Exp $
|
||||
*/
|
||||
|
||||
#include "eitscan.h"
|
||||
@ -177,7 +177,7 @@ void cEITScanner::Process(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!scanList->Count() || !AnyDeviceSwitched) {
|
||||
if (!AnyDeviceSwitched) {
|
||||
delete scanList;
|
||||
scanList = NULL;
|
||||
if (lastActivity == 0) // this was a triggered scan
|
||||
|
Loading…
Reference in New Issue
Block a user