mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Fix core::array::reallocate when shrinking
This commit is contained in:
parent
f06383f78c
commit
7354cbe463
1 changed files with 6 additions and 2 deletions
|
@ -59,8 +59,12 @@ public:
|
|||
{
|
||||
size_t allocated = m_data.capacity();
|
||||
if (new_size < allocated) {
|
||||
if (canShrink)
|
||||
m_data.resize(new_size);
|
||||
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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue