From 9f18dbc8cfa3446938656f1cea1ed18ff31ec386 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 16 Oct 2004 16:12:02 +0200 Subject: [PATCH] Fixed a crash in the time search mechanism --- CONTRIBUTORS | 1 + HISTORY | 1 + menu.c | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index da2cb148..55250de3 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -869,6 +869,7 @@ Reinhard Nissl for reporting a bug in checking the last area for misalignment in cOsd::CanHandleAreas() for suggesting to make sure the OSD reports oeWrongAlignment errors before any oeAreasOverlap error + for reporting a a crash in the time search mechanism Richard Robson for reporting freezing replay if a timer starts while in Transfer Mode from the diff --git a/HISTORY b/HISTORY index 1072057a..5f4b574a 100644 --- a/HISTORY +++ b/HISTORY @@ -3025,3 +3025,4 @@ Video Disk Recorder Revision History - Made volume control more linear (thanks to Emil Naepflein). - Now skipping code table info in SI data (suggested by Milos Kapoun). - Added missing Czech characters to fontosd-iso8859-2.c (thanks to Milos Kapoun). +- Fixed a crash in the time search mechanism (reported by Reinhard Nissl). diff --git a/menu.c b/menu.c index 8fc67739..f8bb0f17 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.312 2004/10/16 10:24:11 kls Exp $ + * $Id: menu.c 1.313 2004/10/16 16:10:42 kls Exp $ */ #include "menu.h" @@ -3076,6 +3076,7 @@ void cReplayControl::Hide(void) modeOnly = false; lastPlay = lastForward = false; lastSpeed = -1; + timeSearchActive = false; } }