Skip to content

Commit

Permalink
change label for quarantined large allocations
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Sep 17, 2020
1 parent a88305c commit b4bbd09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h_malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit b4bbd09

Please sign in to comment.