use allocate_large directly in large remap path
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);
|
size_t copy_size = min(size, old_size);
|
||||||
if (copy_size >= MREMAP_MOVE_THRESHOLD) {
|
if (copy_size >= MREMAP_MOVE_THRESHOLD) {
|
||||||
void *new = allocate(size);
|
void *new = allocate_large(size);
|
||||||
if (new == NULL) {
|
if (new == NULL) {
|
||||||
thread_seal_metadata();
|
thread_seal_metadata();
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue