From 58985f6dc1b0e6d6b1ac3cc99075400b163be523 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 26 Feb 2006 15:10:02 +0100 Subject: Fixed cSchedule::GetFollowingEvent() in case there is currently no present event running --- epg.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'epg.c') diff --git a/epg.c b/epg.c index a8328a8b..2f88af9a 100644 --- a/epg.c +++ b/epg.c @@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider and Rolf Hakenes . * - * $Id: epg.c 1.63 2006/02/26 13:54:44 kls Exp $ + * $Id: epg.c 1.64 2006/02/26 15:07:17 kls Exp $ */ #include "epg.h" @@ -691,6 +691,13 @@ const cEvent *cSchedule::GetFollowingEvent(void) const const cEvent *p = GetPresentEvent(); if (p) p = events.Next(p); + else { + time_t now = time(NULL); + for (p = events.First(); p; p = events.Next(p)) { + if (p->StartTime() >= now) + break; + } + } return p; } -- cgit v1.2.3