Fix minor memory leak in JIT block cache

This commit is contained in:
Henrik Rydgard 2016-02-10 15:43:36 +01:00
parent 35b6c7341b
commit d60f5ba285

View File

@ -100,6 +100,7 @@ void JitBlockCache::Init() {
}
void JitBlockCache::Shutdown() {
Clear(); // Make sure proxy block links are deleted
delete [] blocks_;
blocks_ = 0;
num_blocks_ = 0;