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.
pull/180/head
Daniel Micay 2022-01-03 21:07:24 -05:00
parent 5f32942263
commit acda766e2c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ OPTNONE int main(void) {
if (!p) { if (!p) {
return 1; return 1;
} }
*(p + 8 + 7) = 0; *(p + 8 + 7) ^= 1;
free(p); free(p);
return 0; return 0;
} }