mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
fix small allocation canary overwrite test
Overwriting one byte of a canary with 0 has a 1/256 chance of not triggering the expected failure.
This commit is contained in:
parent
5f32942263
commit
acda766e2c
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ OPTNONE int main(void) {
|
|||
if (!p) {
|
||||
return 1;
|
||||
}
|
||||
*(p + 8 + 7) = 0;
|
||||
*(p + 8 + 7) ^= 1;
|
||||
free(p);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue