Fixed a memory leak

This commit is contained in:
Klaus Schmidinger 2002-03-23 15:17:14 +01:00
parent ca479d90df
commit 56839d8d39
1 changed files with 2 additions and 1 deletions

3
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 1.174 2002/03/23 15:10:20 kls Exp $
* $Id: menu.c 1.175 2002/03/23 15:17:14 kls Exp $
*/
#include "menu.h"
@ -2315,6 +2315,7 @@ void cMenuMain::Set(void)
char *buffer = NULL;
asprintf(&buffer, "%s%s", STOP_RECORDING, ON_PRIMARY_INTERFACE);
Add(new cOsdItem(buffer, osStopRecord));
delete buffer;
}
const char *s = NULL;