diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-01-04 14:58:59 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-01-04 14:58:59 +0100 |
commit | c276c6883d75d8c4402cd00f63c961213bbcbbf1 (patch) | |
tree | 21f1f55dcabe1fed3735b6c5a382f1df4251c383 /epg.c | |
parent | 163945045d5474dbf54a2c96e84450f4d2e56d15 (diff) | |
download | vdr-c276c6883d75d8c4402cd00f63c961213bbcbbf1.tar.gz vdr-c276c6883d75d8c4402cd00f63c961213bbcbbf1.tar.bz2 |
Fixed initializing the cChannel::schedule pointer after reading EPG data with PUTE
Diffstat (limited to 'epg.c')
-rw-r--r-- | epg.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.c 4.9 2019/05/20 09:55:22 kls Exp $ + * $Id: epg.c 4.9.1.1 2021/01/04 14:58:58 kls Exp $ */ #include "epg.h" @@ -1311,8 +1311,13 @@ bool cSchedules::Read(FILE *f) fclose(f); if (result) { // Initialize the channels' schedule pointers, so that the first WhatsOn menu will come up faster: - for (cChannel *Channel = Channels->First(); Channel; Channel = Channels->Next(Channel)) + for (cChannel *Channel = Channels->First(); Channel; Channel = Channels->Next(Channel)) { + if (const cSchedule *Schedule = Channel->schedule) { + if (!Schedule->ChannelID().Valid()) // this is the DummySchedule + Channel->schedule = NULL; + } Schedules->GetSchedule(Channel); + } } return result; } |