mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-03-01 06:21:17 +00:00
- fixed destructor call of FConfigSection in FConfigFile.
This commit is contained in:
parent
2cc6e74b31
commit
c584e9ec95
1 changed files with 1 additions and 2 deletions
|
@ -116,8 +116,7 @@ FConfigFile::~FConfigFile ()
|
||||||
delete[] (char *)entry;
|
delete[] (char *)entry;
|
||||||
entry = nextentry;
|
entry = nextentry;
|
||||||
}
|
}
|
||||||
section->~FConfigSection();
|
delete section;
|
||||||
delete[] (char *)section;
|
|
||||||
section = nextsection;
|
section = nextsection;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue