From a1e7922938187e6d45e3e6603ca2aa0656fb7f71 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 23 Jan 2009 14:19:58 +0100 Subject: Fixed handling the pointer field in cPatPmtParser::ParsePmt() --- remux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'remux.c') diff --git a/remux.c b/remux.c index e58c914f..b9062a3a 100644 --- a/remux.c +++ b/remux.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remux.c 2.7 2009/01/16 15:25:42 kls Exp $ + * $Id: remux.c 2.8 2009/01/23 14:17:07 kls Exp $ */ #include "remux.h" @@ -359,8 +359,8 @@ void cPatPmtParser::ParsePmt(const uchar *Data, int Length) { // The PMT may extend over several TS packets, so we need to assemble them if (pmtSize == 0) { - Data += Data[0] + 1; // this is the first packet Length -= Data[0] + 1; + Data += Data[0] + 1; // this is the first packet if (SectionLength(Data, Length) > Length) { if (Length <= int(sizeof(pmt))) { memcpy(pmt, Data, Length); -- cgit v1.2.3