From 375d25627de34f4a5a1a032f032b8c6a1be2a2c0 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 28 Nov 2020 21:45:05 +0100 Subject: Fixed generating the HashId in cEIT::cEIT() --- eit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eit.c') diff --git a/eit.c b/eit.c index 38662a56..9c3f6f61 100644 --- a/eit.c +++ b/eit.c @@ -8,7 +8,7 @@ * Robert Schneider and Rolf Hakenes . * Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg . * - * $Id: eit.c 4.10 2020/06/23 09:27:09 kls Exp $ + * $Id: eit.c 4.11 2020/11/28 21:45:05 kls Exp $ */ #include "eit.h" @@ -34,7 +34,7 @@ cEIT::cEIT(cSectionSyncerHash &SectionSyncerHash, int Source, u_char Tid, const { if (!CheckCRCAndParse()) return; - int HashId = Tid * getServiceId(); + int HashId = Tid + (getServiceId() << 8); cSectionSyncerEntry *SectionSyncerEntry = SectionSyncerHash.Get(HashId); if (!SectionSyncerEntry) { SectionSyncerEntry = new cSectionSyncerEntry; -- cgit v1.2.3