From 22a4f5a50431ae7ee0668f62c918c631dbb761fb Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 13 Jun 2010 11:14:26 +0200 Subject: [PATCH] Fixed the array size of Atypes in cPatFilter::Process() --- CONTRIBUTORS | 1 + HISTORY | 2 ++ pat.c | 4 ++-- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 5b6a034c..023aac1f 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1097,6 +1097,7 @@ Rolf Ahrenberg for reporting a possible out of buffer memory access in case of bad TS data for implementing handling of HD resolution subtitles according to v1.3.1 of ETSI EN 300 743, chapter 7.2.1 + for fixing the array size of Atypes in cPatFilter::Process() Ralf Klueber for reporting a bug in cutting a recording if there is only a single editing mark diff --git a/HISTORY b/HISTORY index 1b081e1f..87894ea6 100644 --- a/HISTORY +++ b/HISTORY @@ -6472,3 +6472,5 @@ Video Disk Recorder Revision History - Updated the Portuguese language texts (thanks to Cristiano A. Silva). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). +- Fixed the array size of Atypes in cPatFilter::Process() (thanks to + Rolf Ahrenberg). diff --git a/pat.c b/pat.c index 6dc97314..736ddc21 100644 --- a/pat.c +++ b/pat.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: pat.c 2.12 2010/06/13 10:28:19 kls Exp $ + * $Id: pat.c 2.13 2010/06/13 11:12:12 kls Exp $ */ #include "pat.h" @@ -332,7 +332,7 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length int Ppid = 0; int Vtype = 0; int Apids[MAXAPIDS + 1] = { 0 }; // these lists are zero-terminated - int Atypes[MAXDPIDS + 1] = { 0 }; + int Atypes[MAXAPIDS + 1] = { 0 }; int Dpids[MAXDPIDS + 1] = { 0 }; int Dtypes[MAXDPIDS + 1] = { 0 }; int Spids[MAXSPIDS + 1] = { 0 };