diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2018-08-11 14:27:23 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2018-08-11 14:27:23 +0200 |
commit | 7e30f7b7c80d41883ec9b0187dc9c47b6765a4d1 (patch) | |
tree | f30b2f8d85abc4b93f1808cb4ab59e460238b98e /eit2.h | |
parent | 584d76601777973253c87580216a7f5b970bae44 (diff) | |
download | vdr-plugin-eepg-7e30f7b7c80d41883ec9b0187dc9c47b6765a4d1.tar.gz vdr-plugin-eepg-7e30f7b7c80d41883ec9b0187dc9c47b6765a4d1.tar.bz2 |
fix wrong lock sequence thanks to Matthias Feistel
Diffstat (limited to 'eit2.h')
-rw-r--r-- | eit2.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -51,7 +51,7 @@ extern bool SystemCharacterTableIsSingleByte;*/ class cEIT2:public SI::EIT { public: - cEIT2(cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, + cEIT2(cChannels* Channels, cSchedules * Schedules, int Source, u_char Tid, const u_char * Data, EFormat format, bool isEITPid = false, bool OnlyRunningStatus = false); cEIT2 (cSchedule * Schedule, EFormat format); @@ -71,6 +71,7 @@ private: bool OnlyRunningStatus; time_t SegmentStart; time_t SegmentEnd; + cChannels* Channels; cSchedules* Schedules; EFormat Format; const cChannel* channel; |