use allocate_large directly in large remap path
This commit is contained in:
parent
1c899657c1
commit
7e465c621e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user