diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2020-04-08 15:25:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-08 15:25:29 +0200 |
commit | 2e29e64a3f3ff8cc334d1d9e920e8dcfe74881b8 (patch) | |
tree | e60398935e604c000904ee5fdbc4db0d78df16d8 /src/afl-fuzz-extras.c | |
parent | 15e0319c98d134b39f0d4fce3f4658872154e1b1 (diff) | |
parent | 91dc7776ecc52ce92b2bc985d0fa86f84bf72586 (diff) | |
download | afl++-2e29e64a3f3ff8cc334d1d9e920e8dcfe74881b8.tar.gz |
Merge pull request #295 from devnexen/android_build_fix
Android build fix proposal.
Diffstat (limited to 'src/afl-fuzz-extras.c')
-rw-r--r-- | src/afl-fuzz-extras.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-extras.c b/src/afl-fuzz-extras.c index 4dd1647c..16806934 100644 --- a/src/afl-fuzz-extras.c +++ b/src/afl-fuzz-extras.c @@ -451,7 +451,7 @@ void load_auto(afl_state_t *afl) { u8 *fn = alloc_printf("%s/.state/auto_extras/auto_%06u", afl->in_dir, i); s32 fd, len; - fd = open(fn, O_RDONLY, 0600); + fd = open(fn, O_RDONLY); if (fd < 0) { |