mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a segfault in the Schedule menu in case there is no EPG information
This commit is contained in:
parent
1966a15876
commit
191fb910bf
12
menu.c
12
menu.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: menu.c 1.69 2001/03/04 11:37:22 kls Exp $
|
||||
* $Id: menu.c 1.70 2001/03/18 10:16:56 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -1425,7 +1425,7 @@ eOSState cMenuSchedule::ProcessKey(eKeys Key)
|
||||
if (state == osUnknown) {
|
||||
switch (Key) {
|
||||
case kRed: return Record();
|
||||
case kGreen: {
|
||||
case kGreen: if (schedules) {
|
||||
if (!now && !next) {
|
||||
int ChannelNr = 0;
|
||||
if (Count()) {
|
||||
@ -1440,8 +1440,12 @@ eOSState cMenuSchedule::ProcessKey(eKeys Key)
|
||||
next = !next;
|
||||
return AddSubMenu(new cMenuWhatsOn(schedules, now, cMenuWhatsOn::CurrentChannel()));
|
||||
}
|
||||
case kYellow: return AddSubMenu(new cMenuWhatsOn(schedules, false, cMenuWhatsOn::CurrentChannel()));
|
||||
case kBlue: return Switch();
|
||||
case kYellow: if (schedules)
|
||||
return AddSubMenu(new cMenuWhatsOn(schedules, false, cMenuWhatsOn::CurrentChannel()));
|
||||
break;
|
||||
case kBlue: if (Count())
|
||||
return Switch();
|
||||
break;
|
||||
case kOk: if (Count())
|
||||
return AddSubMenu(new cMenuEvent(((cMenuScheduleItem *)Get(Current()))->eventInfo, otherChannel));
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user