diff --git a/test/simple-memory-corruption/eight_byte_overflow_small.c b/test/simple-memory-corruption/eight_byte_overflow_small.c index 0ac796b..bd2666d 100644 --- a/test/simple-memory-corruption/eight_byte_overflow_small.c +++ b/test/simple-memory-corruption/eight_byte_overflow_small.c @@ -7,7 +7,7 @@ OPTNONE int main(void) { if (!p) { return 1; } - *(p + 8 + 7) = 0; + *(p + 8 + 7) ^= 1; free(p); return 0; }