mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fix mem leak in mesh cache (#5781)
This commit is contained in:
parent
ce9802266e
commit
d176dabeb4
@ -286,6 +286,7 @@ void MeshUpdateQueue::cleanupCache()
|
||||
if (cached_block->refcount_from_queue == 0 &&
|
||||
cached_block->last_used_timestamp < t_now - cache_seconds) {
|
||||
m_cache.erase(it++);
|
||||
delete cached_block;
|
||||
} else {
|
||||
++it;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user