mirror of
https://git.koehlerweb.org/frodovdr/vdr-plugin-skindesigner.git
synced 2025-12-28 07:51:37 +01:00
fixed crash for timers without channel
This commit is contained in:
@@ -180,7 +180,7 @@ bool cVeDcEpgInfo::EventHasTimer(const cEvent *e) {
|
||||
bool hasTimer = e->HasTimer();
|
||||
for (int i = 0; i < globalTimers->Size() && !hasTimer; i++)
|
||||
if (const cTimer *Timer = globalTimers->At(i))
|
||||
if (Timer->Channel()->GetChannelID() == e->ChannelID())
|
||||
if (Timer->Channel() && (Timer->Channel()->GetChannelID() == e->ChannelID()))
|
||||
if (const cEvent *timerEvent = Timer->Event())
|
||||
if (e->EventID() == timerEvent->EventID())
|
||||
hasTimer = true;
|
||||
|
||||
Reference in New Issue
Block a user