Remove unnecessary null pointer checks

This commit is contained in:
Emmanuel Leblond
2016-01-04 11:46:16 +01:00
parent cb39db0b02
commit cabf923484
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;
}