QVarLengthArray: fix memory leak in (qsizetype) ctor
Instead of duplicating the logic of resize() to avoid three stores to (ptr, a, s), and getting the memory management wrong (malloc()ed ptr leaked when a following default-construction failed), simply call the QVLA default ctor followed by std::uninitialized_default_construct_n(). After we called the QVLA default ctor, the lifetime of this object has begun, so if the following code throws, ~QVLA will be called to clean up. This was not the case when we didn't delegate the ctor: if the body of this ctor threw, ~QVLA would _not_ have been called, since the lifetime of the object had never started. Since the dtor may now run, we need to maintain the class invariants, so we can't just set the size() before we have constructed all elements. This is where std::uninitialized_default_construct_n() comes in: it's strongly exception-safe, so if a constructor throws, it will destroy all previously-constructed elements, so that either we fail and size() == 0 is true or it doesn't, then we can set size() to asize. Pick-to: 6.5 6.4 6.4.3 6.2 Change-Id: I03408d8a473e8a31fa0086ef5ac551ce46a758f8 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>bb10
parent
d50f2fc1cc
commit
217f2ab3eb
|
|
@ -672,22 +672,22 @@ QVarLengthArray(InputIterator, InputIterator) -> QVarLengthArray<ValueType>;
|
|||
|
||||
template <class T, qsizetype Prealloc>
|
||||
Q_INLINE_TEMPLATE QVarLengthArray<T, Prealloc>::QVarLengthArray(qsizetype asize)
|
||||
: QVarLengthArray()
|
||||
{
|
||||
Q_ASSERT_X(asize >= 0, "QVarLengthArray::QVarLengthArray(qsizetype)",
|
||||
"Size must be greater than or equal to 0.");
|
||||
|
||||
// historically, this ctor worked for non-copyable/non-movable T, so keep it working, why not?
|
||||
// resize(asize) // this requires a movable or copyable T, can't use, need to do it by hand
|
||||
|
||||
if (asize > Prealloc) {
|
||||
this->ptr = malloc(asize * sizeof(T));
|
||||
Q_CHECK_PTR(this->ptr);
|
||||
this->a = asize;
|
||||
}
|
||||
if constexpr (QTypeInfo<T>::isComplex)
|
||||
std::uninitialized_default_construct_n(data(), asize);
|
||||
this->s = asize;
|
||||
Q_ASSERT_X(size() >= 0, "QVarLengthArray::QVarLengthArray()", "Size must be greater than or equal to 0.");
|
||||
if (size() > Prealloc) {
|
||||
this->ptr = malloc(size() * sizeof(T));
|
||||
Q_CHECK_PTR(data());
|
||||
this->a = size();
|
||||
} else {
|
||||
this->ptr = this->array;
|
||||
this->a = Prealloc;
|
||||
}
|
||||
if constexpr (QTypeInfo<T>::isComplex) {
|
||||
T *i = end();
|
||||
while (i != begin())
|
||||
q20::construct_at(--i);
|
||||
}
|
||||
}
|
||||
|
||||
template <class T>
|
||||
|
|
|
|||
Loading…
Reference in New Issue