- Fixed crash while exiting if compiled by GCC -O3.

This commit is contained in:
Edoardo Prezioso 2017-01-13 11:39:52 +01:00 committed by Christoph Oelckers
parent e621b43dd3
commit 3b7d18c129

View file

@ -272,6 +272,7 @@ VMFrameStack::~VMFrameStack()
next = block->NextBlock;
delete[] (VM_UBYTE *)block;
}
Blocks = NULL;
}
if (UnusedBlocks != NULL)
{
@ -281,10 +282,9 @@ VMFrameStack::~VMFrameStack()
next = block->NextBlock;
delete[] (VM_UBYTE *)block;
}
}
Blocks = NULL;
UnusedBlocks = NULL;
}
}
//===========================================================================
//