mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-10-01 01:36:01 -04:00
avoid type comparison warning on some platforms
This commit is contained in:
parent
29b09648d6
commit
ddd14bc421
@ -1178,7 +1178,7 @@ static size_t get_large_size_class(size_t size) {
|
||||
// 512 KiB [2560 KiB, 3 MiB, 3584 KiB, 4 MiB]
|
||||
// 1 MiB [5 MiB, 6 MiB, 7 MiB, 8 MiB]
|
||||
// etc.
|
||||
size = max(size, PAGE_SIZE);
|
||||
size = max(size, (size_t)PAGE_SIZE);
|
||||
size_t spacing_shift = 64 - __builtin_clzl(size - 1) - 3;
|
||||
size_t spacing_class = 1ULL << spacing_shift;
|
||||
return (size + (spacing_class - 1)) & ~(spacing_class - 1);
|
||||
|
Loading…
Reference in New Issue
Block a user