diff --git a/CONTRIBUTORS b/CONTRIBUTORS index e364353a..b84257a7 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -194,6 +194,7 @@ Stefan Huelswitt for adding MPEG1 replay capability to cPesAssembler for fixing handling symbolic links in cRecordings::ScanVideoDir() for reporting a memory leak in tComponent + for fixing a memory leak in cDvbPlayer Ulrich Röder for pointing out that there are channels that have a symbol rate higher than 27500 diff --git a/HISTORY b/HISTORY index 658b9a0f..bb0481b7 100644 --- a/HISTORY +++ b/HISTORY @@ -3480,3 +3480,4 @@ Video Disk Recorder Revision History (thanks to Ville Skyttä). - Updated the Danish OSD texts (thanks to Mogens Elneff). - Fixed a memory leak in tComponent (thanks to Stefan Huelswitt and Daniel Thompson). +- Fixed a memory leak in cDvbPlayer (thanks to Stefan Huelswitt). diff --git a/dvbplayer.c b/dvbplayer.c index 8605268b..ad5ccf2d 100644 --- a/dvbplayer.c +++ b/dvbplayer.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.c 1.30 2005/01/14 14:00:56 kls Exp $ + * $Id: dvbplayer.c 1.31 2005/05/05 12:52:40 kls Exp $ */ #include "dvbplayer.h" @@ -263,6 +263,7 @@ cDvbPlayer::~cDvbPlayer() { Detach(); Save(); + delete readFrame; // might not have been stored in the buffer in Action() delete index; delete fileName; delete backTrace; @@ -296,6 +297,7 @@ void cDvbPlayer::Empty(void) nonBlockingFileReader->Clear(); if ((readIndex = backTrace->Get(playDir == pdForward)) < 0) readIndex = writeIndex; + delete readFrame; // might not have been stored in the buffer in Action() readFrame = NULL; playFrame = NULL; ringBuffer->Clear();