mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +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 &&
|
if (cached_block->refcount_from_queue == 0 &&
|
||||||
cached_block->last_used_timestamp < t_now - cache_seconds) {
|
cached_block->last_used_timestamp < t_now - cache_seconds) {
|
||||||
m_cache.erase(it++);
|
m_cache.erase(it++);
|
||||||
|
delete cached_block;
|
||||||
} else {
|
} else {
|
||||||
++it;
|
++it;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user