remove master file on exit

This commit is contained in:
van Hauser 2020-05-20 22:52:33 +02:00
parent 3b4cd98498
commit 982017a2ab

View File

@ -1366,6 +1366,14 @@ stop_fuzzing:
time_spent_working / afl->fsrv.total_execs);
#endif
if (afl->is_master) {
u8 path[PATH_MAX];
sprintf(path, "%s/is_master", afl->out_dir);
unlink(path);
}
fclose(afl->fsrv.plot_file);
destroy_queue(afl);
destroy_extras(afl);