diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2021-03-01 17:21:27 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2021-03-01 17:21:27 +0100 |
commit | 05e2f577f6f510f848661073fcd19c1ef6b9a517 (patch) | |
tree | 856d7c37935d7434e7e49f417c66cdeb1c13b5bb | |
parent | a29b360d55026b43989ab653958bfd86fc854927 (diff) | |
download | afl++-05e2f577f6f510f848661073fcd19c1ef6b9a517.tar.gz |
fix area_is_valid with write
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 15bc823a..1694def6 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -125,7 +125,7 @@ static u8 _is_sancov; /* Dummy pipe for area_is_valid() */ -static int dummy_pipe; +static int dummy_pipe[2]; /* ensure we kill the child on termination */ |