| 427 | } |
| 428 | |
| 429 | static void* mi_theap_recalloc(mi_theap_t* theap, void* p, size_t count, size_t size) mi_attr_noexcept { |
| 430 | size_t total; |
| 431 | if (mi_count_size_overflow(count, size, &total)) return NULL; |
| 432 | return mi_theap_rezalloc(theap, p, total); |
| 433 | } |
| 434 | |
| 435 | |
| 436 | mi_decl_nodiscard void* mi_realloc(void* p, size_t newsize) mi_attr_noexcept { |
no test coverage detected