minisat: Use reallocarray

Avoid gcc warning about non-trivial copying.
This commit is contained in:
Krystine Sherwin 2024-08-16 04:30:37 +12:00
parent d34833d177
commit eb02ab07da
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void vec<T,_Size>::capacity(Size min_cap) {
Size add = max((min_cap - cap + 1) & ~1, ((cap >> 1) + 2) & ~1); // NOTE: grow by approximately 3/2
const Size size_max = std::numeric_limits<Size>::max();
if ( ((size_max <= std::numeric_limits<int>::max()) && (add > size_max - cap))
|| (((data = (T*)::realloc(data, (cap += add) * sizeof(T))) == NULL) && errno == ENOMEM) )
|| (((data = (T*)::reallocarray(data, (cap += add), sizeof(T))) == NULL) && errno == ENOMEM) )
throw OutOfMemoryException();
}