Actions
Bug #452
closedFehlender Destructor-Aufruf für Objekt 'cCharSetConv'
Description
Im destructor von 'cGraphLCDDisplay::~cGraphLCDDisplay' wird die Instanz von 'cCharSetConv' nicht wieder freigegeben.
cGraphLCDDisplay::~cGraphLCDDisplay()
{
active = false;
Cancel(3);
delete GraphLCDState;
delete bitmap;
delete logoList;
//---- Neu ----
if (conv)
{
delete conv;
conv=NULL;
}
}
Updated by randy about 14 years ago
- Status changed from New to Closed
danke, habs updated.
gruss,
-- randy
Actions