Consistently using malloc/free and new/delete

This commit is contained in:
Klaus Schmidinger
2002-08-11 13:32:23 +02:00
parent b9c4cb0ec9
commit 9a1a16f3d4
23 changed files with 172 additions and 160 deletions

View File

@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menuitems.c 1.6 2002/06/16 13:23:56 kls Exp $
* $Id: menuitems.c 1.7 2002/08/11 11:17:21 kls Exp $
*/
#include "menuitems.h"
@@ -23,13 +23,13 @@ cMenuEditItem::cMenuEditItem(const char *Name)
cMenuEditItem::~cMenuEditItem()
{
delete name;
delete value;
free(name);
free(value);
}
void cMenuEditItem::SetValue(const char *Value)
{
delete value;
free(value);
value = strdup(Value);
char *buffer = NULL;
asprintf(&buffer, "%s:\t%s", name, value);
@@ -119,7 +119,7 @@ cMenuEditChrItem::cMenuEditChrItem(const char *Name, char *Value, const char *Al
cMenuEditChrItem::~cMenuEditChrItem()
{
delete allowed;
free(allowed);
}
void cMenuEditChrItem::Set(void)
@@ -167,7 +167,7 @@ cMenuEditStrItem::cMenuEditStrItem(const char *Name, char *Value, int Length, co
cMenuEditStrItem::~cMenuEditStrItem()
{
delete allowed;
free(allowed);
}
void cMenuEditStrItem::SetHelpKeys(void)
@@ -364,7 +364,7 @@ cMenuTextItem::cMenuTextItem(const char *Text, int X, int Y, int W, int H, eDvbC
cMenuTextItem::~cMenuTextItem()
{
delete text;
free(text);
}
void cMenuTextItem::Clear(void)