about summary refs log tree commit diff
path: root/src/afl-fuzz-extras.c
diff options
context:
space:
mode:
authorDavid Carlier <devnexen@gmail.com>2020-04-07 20:05:57 +0100
committerDavid Carlier <devnexen@gmail.com>2020-04-08 04:57:01 +0100
commit91dc7776ecc52ce92b2bc985d0fa86f84bf72586 (patch)
treee6bf264dbedd886126fc6e84a29eb9446e7fac24 /src/afl-fuzz-extras.c
parent452acf3a752f3ff360a5eebc526567cd3ba9a407 (diff)
downloadafl++-91dc7776ecc52ce92b2bc985d0fa86f84bf72586.tar.gz
Android build fix proposal.
LTO flag is recognised but however broken on Android (tested with armv7 arch).
Thus giving the choice not to enable it.
In fortify mode, open required O_CREAT or O_TMPFILE when mode is set.
Diffstat (limited to 'src/afl-fuzz-extras.c')
-rw-r--r--src/afl-fuzz-extras.c2
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) {