mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02:00
Fix core::array::reallocate when shrinking
This commit is contained in:
@@ -59,8 +59,12 @@ public:
|
||||
{
|
||||
size_t allocated = m_data.capacity();
|
||||
if (new_size < allocated) {
|
||||
if (canShrink)
|
||||
if (canShrink) {
|
||||
// since capacity != size don't accidentally make it bigger
|
||||
if (m_data.size() > new_size)
|
||||
m_data.resize(new_size);
|
||||
m_data.shrink_to_fit();
|
||||
}
|
||||
} else {
|
||||
m_data.reserve(new_size);
|
||||
}
|
||||
|
Reference in New Issue
Block a user