mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- Fixed new[]/delete mismatch in FNodeBuilder
Found with address sanitizer.
This commit is contained in:
parent
6aa56202b6
commit
5789ac6245
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ FNodeBuilder::~FNodeBuilder()
|
|||
}
|
||||
if (OldVertexTable != NULL)
|
||||
{
|
||||
delete OldVertexTable;
|
||||
delete[] OldVertexTable;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue