- Fixed new[]/delete mismatch in FNodeBuilder

Found with address sanitizer.
This commit is contained in:
Edoardo Prezioso 2014-03-16 13:21:08 +01:00
parent 6aa56202b6
commit 5789ac6245
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ FNodeBuilder::~FNodeBuilder()
} }
if (OldVertexTable != NULL) if (OldVertexTable != NULL)
{ {
delete OldVertexTable; delete[] OldVertexTable;
} }
} }