change label for quarantined large allocations

This commit is contained in:
Daniel Micay 2020-09-17 16:54:50 -04:00
parent a88305c01b
commit b4bbd09f07

View File

@ -842,7 +842,7 @@ static void regions_quarantine_deallocate_pages(void *p, size_t size, size_t gua
deallocate_pages(p, size, guard_size);
return;
}
memory_set_name(p, size, "malloc large");
memory_set_name(p, size, "malloc large quarantine");
struct quarantine_info target =
(struct quarantine_info){(char *)p - guard_size, size + guard_size * 2};