diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-12-27 10:53:46 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-12-27 10:53:46 +0100 |
commit | 1861074241f1a6ee71372ce3cd474f19a4a2867c (patch) | |
tree | 0127f236368b168205c5caeb114dfa6ee05e9f6d /epg.c | |
parent | 178f2cacf90c31398cb397f4300375ba1b82f766 (diff) | |
download | vdr-1861074241f1a6ee71372ce3cd474f19a4a2867c.tar.gz vdr-1861074241f1a6ee71372ce3cd474f19a4a2867c.tar.bz2 |
Fixed a possible crash in the Schedule menu, in case Setup.EPGLinger is 0
Diffstat (limited to 'epg.c')
-rw-r--r-- | epg.c | 4 |
1 files changed, 3 insertions, 1 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.1.1 2021/01/04 14:58:58 kls Exp $ + * $Id: epg.c 4.9.1.2 2021/12/27 10:52:38 kls Exp $ */ #include "epg.h" @@ -1347,6 +1347,8 @@ const cSchedule *cSchedules::GetSchedule(const cChannel *Channel, bool AddIfMiss { // This is not very beautiful, but it dramatically speeds up the // "What's on now/next?" menus. + if (!Channel) + return NULL; static cSchedule DummySchedule(tChannelID::InvalidID); if (!Channel->schedule) Channel->schedule = GetSchedule(Channel->GetChannelID()); |