diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-12-26 14:48:46 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-12-26 14:48:46 +0100 |
commit | 56f49073092ef1726d949e35454382bd4d38abb9 (patch) | |
tree | 7035253cb2282ea791ff0cdb646786eb2a920a06 | |
parent | ad552300510a2b5c989d5eda181d58c11d355ee2 (diff) | |
download | vdr-56f49073092ef1726d949e35454382bd4d38abb9.tar.gz vdr-56f49073092ef1726d949e35454382bd4d38abb9.tar.bz2 |
Removed an invalid access to Event->schedule in cSchedule::DelEvent()
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | epg.c | 3 |
2 files changed, 2 insertions, 2 deletions
@@ -3995,3 +3995,4 @@ Video Disk Recorder Revision History (thanks to Kendy Kutzner). - EPG events that are no longer in the currently broadcasted data stream are now automatically deleted. +- Removed an invalid access to Event->schedule in cSchedule::DelEvent(). @@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.c 1.42 2005/12/26 14:44:03 kls Exp $ + * $Id: epg.c 1.43 2005/12/26 14:47:55 kls Exp $ */ #include "epg.h" @@ -637,7 +637,6 @@ void cSchedule::DelEvent(cEvent *Event) if (Event->schedule == this) { UnhashEvent(Event); events.Del(Event); - Event->schedule = NULL; } } |