We do not call malloc/free any more

This commit is contained in:
Rangi42
2024-03-02 08:16:30 -05:00
parent 19bb12754b
commit 52f8ecc347
5 changed files with 14 additions and 23 deletions

View File

@@ -539,16 +539,3 @@ void obj_Setup(unsigned int nbFiles)
{
nodes.resize(nbFiles);
}
static void freeSection(Section *section)
{
for (Section *next; section; section = next) {
next = section->nextu;
delete section;
};
}
void obj_Cleanup()
{
sect_ForEach(freeSection);
}