Merge pull request #3230 from touilleMan/issue-55

Remove unnecessary null pointer checks
This commit is contained in:
Rémi Verschelde 2016-01-11 12:00:44 +01:00
commit 7f82c8d7c5
8 changed files with 10 additions and 19 deletions

View file

@ -149,8 +149,7 @@ void OS_Unix::finalize_core() {
if (mempool_dynamic)
memdelete( mempool_dynamic );
if (mempool_static)
delete mempool_static;
delete mempool_static;
}