diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-08-30 12:15:56 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-08-30 12:15:56 +0200 |
commit | 22454ce60b0253a6de260375c904895cd0efd1bc (patch) | |
tree | 1c65a820cd80c5b3d38c55e215763ece27b88c68 | |
parent | 5036cb54ccc3f4dcc261e124e9cf0146a06592c2 (diff) | |
download | afl++-22454ce60b0253a6de260375c904895cd0efd1bc.tar.gz |
fix issue with static variables needed by forkserver in afl-fuzz
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 1e8c5777..aa29e85a 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -224,7 +224,7 @@ EXP_ST u8 skip_deterministic, /* Skip deterministic stages? */ fast_cal; /* Try to calibrate faster? */ u8 uses_asan; /* Target uses ASAN? */ -static s32 out_fd, /* Persistent fd for out_file */ +s32 out_fd, /* Persistent fd for out_file */ #ifndef HAVE_ARC4RANDOM dev_urandom_fd = -1, /* Persistent fd for /dev/urandom */ #endif |