mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-20 21:25:43 +00:00
nits
This commit is contained in:
@ -5,7 +5,16 @@
|
|||||||
|
|
||||||
|
|
||||||
### Version ++4.33a (dev)
|
### Version ++4.33a (dev)
|
||||||
- ...
|
- afl-fuzz:
|
||||||
|
- Use `AFL_PRELOAD_DISCRIMINATE_FORKSERVER_PARENT` if you use AFL_PRELOAD
|
||||||
|
to disable fork, see docs (thanks to @alexandredoyen29)
|
||||||
|
- Fix for FAST power schedules (introduced in 4.32c) (thanks to @kcwu)
|
||||||
|
- Colors for NO_UI output (thanks to @smoelius)
|
||||||
|
- more 64 bit archicture support by @maribu
|
||||||
|
- afl-cc:
|
||||||
|
- Fix to make AFL_SAN_NO_INST work with gcc_plugin
|
||||||
|
- qemuafl:
|
||||||
|
- better MIPS persistent mode support
|
||||||
|
|
||||||
|
|
||||||
### Version ++4.32c (release)
|
### Version ++4.32c (release)
|
||||||
|
@ -888,11 +888,7 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
|
|||||||
|
|
||||||
/* CHILD PROCESS */
|
/* CHILD PROCESS */
|
||||||
|
|
||||||
if (unlikely(fsrv->setenv)) {
|
if (unlikely(fsrv->setenv)) { setenv("AFL_FORKSERVER_PARENT", "1", 0); }
|
||||||
|
|
||||||
setenv("AFL_FORKSERVER_PARENT", "1", 0);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// enable terminating on sigpipe in the children
|
// enable terminating on sigpipe in the children
|
||||||
struct sigaction sa;
|
struct sigaction sa;
|
||||||
|
@ -80,6 +80,7 @@ int main(int argc, char **argv) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef EXIT_AT_END
|
#ifdef EXIT_AT_END
|
||||||
exit(0);
|
exit(0);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user