use allocate_large directly in large remap path

This commit is contained in:
Daniel Micay 2019-04-14 19:46:22 -04:00
parent 1c899657c1
commit 7e465c621e

View File

@ -1436,7 +1436,7 @@ EXPORT void *h_realloc(void *old, size_t size) {
size_t copy_size = min(size, old_size);
if (copy_size >= MREMAP_MOVE_THRESHOLD) {
void *new = allocate(size);
void *new = allocate_large(size);
if (new == NULL) {
thread_seal_metadata();
return NULL;