This commit is contained in:
vanhauser-thc
2025-05-05 14:35:52 +02:00
parent 673463ff1c
commit 6d45b286f8
3 changed files with 12 additions and 6 deletions

View File

@ -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)

View File

@ -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;

View File

@ -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