From 6b678bcbdaa71cb5fb9c5563e62b01e62beed1b4 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 16 Mar 2008 11:16:28 +0100 Subject: Resetting a timer's 'pending' flag when it has ended --- menu.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'menu.c') diff --git a/menu.c b/menu.c index b7a21af7..b7eab456 100644 --- a/menu.c +++ b/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.481 2008/03/14 13:09:19 kls Exp $ + * $Id: menu.c 1.482 2008/03/16 11:15:28 kls Exp $ */ #include "menu.h" @@ -3879,8 +3879,11 @@ void cRecordControl::Stop(void) bool cRecordControl::Process(time_t t) { - if (!recorder || !recorder->IsAttached() || !timer || !timer->Matches(t)) + if (!recorder || !recorder->IsAttached() || !timer || !timer->Matches(t)) { + if (timer) + timer->SetPending(false); return false; + } AssertFreeDiskSpace(timer->Priority()); return true; } -- cgit v1.2.3