- fixed destructor call of FConfigSection in FConfigFile.

This commit is contained in:
Christoph Oelckers 2015-04-06 23:23:50 +02:00
parent 2cc6e74b31
commit c584e9ec95
1 changed files with 1 additions and 2 deletions

View File

@ -116,8 +116,7 @@ FConfigFile::~FConfigFile ()
delete[] (char *)entry;
entry = nextentry;
}
section->~FConfigSection();
delete[] (char *)section;
delete section;
section = nextsection;
}
}