Browse Source

AP_Common: use standard realloc method from HAL

zr-v5.1
bugobliterator 5 years ago committed by Andrew Tridgell
parent
commit
88de9572aa
  1. 2
      libraries/AP_Common/AP_ExpandingArray.cpp

2
libraries/AP_Common/AP_ExpandingArray.cpp

@ -38,7 +38,7 @@ bool AP_ExpandingArrayGeneric::expand(uint16_t num_chunks) @@ -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…
Cancel
Save