Fix issue in List class

This commit is contained in:
Daniel Chappuis 2020-08-10 00:03:35 +02:00
parent 05e3b00689
commit 089d227434

View File

@ -313,7 +313,7 @@ class List {
void addWithoutInit(uint nbElements) {
// If we need to allocate more memory
if (mSize == mCapacity) {
if ((mSize + nbElements) > mCapacity) {
reserve(mCapacity == 0 ? nbElements : (mCapacity + nbElements) * 2);
}