summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-18 13:13:31 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-18 13:13:31 +0200
commitc58f61392b29d1583ab46e6918b0fa57f06b687b (patch)
tree792900e526a51de2b17c7cc7f07e82ded2df0a6f /eit.c
parente597b304ec4081baca0d178b1eb9027d08ecc3a4 (diff)
downloadvdr-c58f61392b29d1583ab46e6918b0fa57f06b687b.tar.gz
vdr-c58f61392b29d1583ab46e6918b0fa57f06b687b.tar.bz2
Fixed reading 'epg.data' for channels with non-zero RID
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/eit.c b/eit.c
index 22fcf8aa..d1680992 100644
--- a/eit.c
+++ b/eit.c
@@ -16,7 +16,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: eit.c 1.76 2003/05/18 12:51:50 kls Exp $
+ * $Id: eit.c 1.77 2003/05/18 13:13:31 kls Exp $
***************************************************************************/
#include "eit.h"
@@ -807,6 +807,7 @@ cSchedules::~cSchedules()
/** */
const cSchedule *cSchedules::AddChannelID(tChannelID channelid)
{
+ channelid.ClrRid();
const cSchedule *p = GetSchedule(channelid);
if (!p) {
Add(new cSchedule(channelid));