mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2024-12-18 20:34:22 -05:00
harden thread_arena check
This commit is contained in:
parent
d5c00b4d0d
commit
62c73d8b41
@ -469,7 +469,7 @@ static inline void *allocate_small(size_t requested_size) {
|
||||
size_t size = info.size ? info.size : 16;
|
||||
|
||||
#if N_ARENA > 1
|
||||
if (unlikely(thread_arena == N_ARENA)) {
|
||||
if (unlikely(thread_arena >= N_ARENA)) {
|
||||
thread_arena = thread_arena_counter++ % N_ARENA;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user