diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-12-04 15:09:45 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-12-04 15:09:45 +0100 |
commit | 8db58ff99e815ebb42408a30bf84002bb7ee08dc (patch) | |
tree | 9ce96e3acdd95a5aa6047d38eb215876a40c103d | |
parent | 04e538072340d9ba7d0342fe59c755e4c8687775 (diff) | |
download | vdr-8db58ff99e815ebb42408a30bf84002bb7ee08dc.tar.gz vdr-8db58ff99e815ebb42408a30bf84002bb7ee08dc.tar.bz2 |
Fixed a crash with malformed SI data1.7.22
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | libsi/si.c | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -6779,3 +6779,4 @@ Video Disk Recorder Revision History to Ville Skyttä). - Added file name and line number to LOG_ERROR_STR() (thanks to Rolf Ahrenberg). - Replaced all calls to sleep() with cCondWait::SleepMs() (thanks to Rolf Ahrenberg). +- Fixed a crash with malformed SI data (patch from vdr-portal). @@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.c 2.4 2011/06/15 21:26:00 kls Exp $ + * $Id: si.c 2.5 2011/12/04 15:06:18 kls Exp $ * * ***************************************************************************/ @@ -206,6 +206,8 @@ void DescriptorGroup::Add(GroupDescriptor *d) { array[i]=0; } else if (length != d->getLastDescriptorNumber()+1) return; //avoid crash in case of misuse + if (length <= d->getDescriptorNumber()) + return; // see http://www.vdr-portal.de/board60-linux/board14-betriebssystem/board69-c-t-vdr/p1025777-segfault-mit-vdr-1-7-21/#post1025777 array[d->getDescriptorNumber()]=d; } |