AP_Common: use standard realloc method from HAL
This commit is contained in:
parent
384571ddf2
commit
c093af9ea5
@ -38,7 +38,7 @@ bool AP_ExpandingArrayGeneric::expand(uint16_t num_chunks)
|
||||
// fail if reallocating would leave less than 100 bytes of memory free
|
||||
return false;
|
||||
}
|
||||
chunk_ptr_t *chunk_ptrs_new = (chunk_ptr_t*)realloc(chunk_ptrs, chunk_ptr_size * sizeof(chunk_ptr_t));
|
||||
chunk_ptr_t *chunk_ptrs_new = (chunk_ptr_t*)hal.util->std_realloc((void*)chunk_ptrs, chunk_ptr_size * sizeof(chunk_ptr_t));
|
||||
if (chunk_ptrs_new == nullptr) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user