Fixed a memory leak in cNonBlockingFileReader

This commit is contained in:
Klaus Schmidinger
2003-05-24 09:10:07 +02:00
parent 24bbaa277c
commit 987c2f34e7
3 changed files with 4 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: dvbplayer.c 1.21 2003/05/19 15:23:19 kls Exp $
* $Id: dvbplayer.c 1.22 2003/05/24 09:04:26 kls Exp $
*/
#include "dvbplayer.h"
@@ -114,6 +114,7 @@ void cNonBlockingFileReader::Clear(void)
{
cMutexLock MutexLock(&mutex);
f = -1;
free(buffer);
buffer = NULL;
wanted = length = 0;
hasData = false;