diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-02-01 14:59:52 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-02-01 14:59:52 +0100 |
commit | 471b287f700f4e74c940399d43567ca06dad779a (patch) | |
tree | 348b37116a9cbe8ad5b514dac6221a431418a8dd /libsi/si.h | |
parent | 1c4865147a01aec70fe6b8d1d4b5bd071c431cff (diff) | |
download | vdr-471b287f700f4e74c940399d43567ca06dad779a.tar.gz vdr-471b287f700f4e74c940399d43567ca06dad779a.tar.bz2 |
Fixed a memory leak in case of broken Extended Event Descriptors
Diffstat (limited to 'libsi/si.h')
-rw-r--r-- | libsi/si.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.h 3.2 2014/02/08 14:11:32 kls Exp $ + * $Id: si.h 3.3 2015/02/01 14:55:27 kls Exp $ * * ***************************************************************************/ @@ -483,7 +483,7 @@ class DescriptorGroup { public: DescriptorGroup(bool deleteOnDesctruction=true); ~DescriptorGroup(); - void Add(GroupDescriptor *d); + bool Add(GroupDescriptor *d); void Delete(); int getLength() { return length; } GroupDescriptor **getDescriptors() { return array; } |