diff options
author | David CARLIER <devnexen@gmail.com> | 2021-12-12 20:32:18 +0000 |
---|---|---|
committer | David CARLIER <devnexen@gmail.com> | 2021-12-12 20:32:18 +0000 |
commit | 6eb752a65cd340a8cf2234d48e32770113ce2416 (patch) | |
tree | 2e1ce01f1872773ce8458299418aef08f2f38004 | |
parent | 4bcd96ce6839033228faa277c8d58b28723128d6 (diff) | |
download | afl++-6eb752a65cd340a8cf2234d48e32770113ce2416.tar.gz |
radamsa mutator adding freebsd specific fcntl flags.
-rw-r--r-- | custom_mutators/radamsa/libradamsa.c | 4 | ||||
m--------- | unicorn_mode/unicornafl | 0 |
2 files changed, 4 insertions, 0 deletions
diff --git a/custom_mutators/radamsa/libradamsa.c b/custom_mutators/radamsa/libradamsa.c index 792eea35..e6838752 100644 --- a/custom_mutators/radamsa/libradamsa.c +++ b/custom_mutators/radamsa/libradamsa.c @@ -4473,6 +4473,10 @@ static word prim_sys(word op, word a, word b, word c) { FD_CLOEXEC, F_DUPFD, F_DUPFD_CLOEXEC, +#if defined(F_DUP2FD) + F_DUP2FD, + F_DUP2FD_CLOEXEC, +#endif F_GETFD, F_SETFD, F_GETFL, diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl -Subproject d4915053d477dd827b3fe4b494173d3fbf9f456 +Subproject 9df92d6868e8b219886e4b7458e5e134c48ff2c |