use allocate_large directly in large remap path

pull/87/head
Daniel Micay 2019-04-14 19:46:22 -04:00
parent 1c899657c1
commit 7e465c621e
1 changed files with 1 additions and 1 deletions

View File

@ -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;