mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
adjust slot count for 224 byte size class
This commit is contained in:
parent
5a1a76f94e
commit
56e4c7e042
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ size_classes = [
|
|||
|
||||
size_class_slots = [
|
||||
256, 128, 128, 64, 51, 42, 36, 64,
|
||||
51, 64, 64, 64,
|
||||
51, 64, 54, 64,
|
||||
64, 64, 64, 64,
|
||||
64, 64, 64, 64,
|
||||
16, 16, 16, 16,
|
||||
|
|
2
malloc.c
2
malloc.c
|
@ -152,7 +152,7 @@ static const uint16_t size_classes[] = {
|
|||
|
||||
static const uint16_t size_class_slots[] = {
|
||||
/* 16 */ 256, 128, 128, 64, 51, 42, 36, 64,
|
||||
/* 32 */ 51, 64, 64, 64,
|
||||
/* 32 */ 51, 64, 54, 64,
|
||||
/* 64 */ 64, 64, 64, 64,
|
||||
/* 128 */ 64, 64, 64, 64,
|
||||
/* 256 */ 16, 16, 16, 16,
|
||||
|
|
Loading…
Add table
Reference in a new issue