From 178ec6e3f9ddfe68a854b43a27413857804877d9 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 23 Mar 2019 22:57:19 -0400 Subject: [PATCH] relabel quarantined large allocation regions --- h_malloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/h_malloc.c b/h_malloc.c index c42fd60..93e5f0b 100644 --- a/h_malloc.c +++ b/h_malloc.c @@ -755,6 +755,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"); struct quarantine_info a = (struct quarantine_info){(char *)p - guard_size, size + guard_size * 2};