From b4bbd09f07772e648ca05684a3b462e3074f09fe Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 17 Sep 2020 16:54:50 -0400 Subject: [PATCH] change label for quarantined large allocations --- h_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h_malloc.c b/h_malloc.c index 420034d..5602a5c 100644 --- a/h_malloc.c +++ b/h_malloc.c @@ -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};