mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-18 20:48:07 +00:00
add libfuzzer custom mutator, minor enhancements and fixes
This commit is contained in:
@ -1508,9 +1508,9 @@ int main(int argc, char **argv, char **envp) {
|
||||
|
||||
if (debug) {
|
||||
|
||||
SAYF(cMGN "[D]" cRST " cd \"%s\";", getthecwd());
|
||||
SAYF(cMGN "[D]" cRST " cd '%s';", getthecwd());
|
||||
for (i = 0; i < argc; i++)
|
||||
SAYF(" \"%s\"", argv[i]);
|
||||
SAYF(" '%s'", argv[i]);
|
||||
SAYF("\n");
|
||||
|
||||
}
|
||||
@ -1536,9 +1536,9 @@ int main(int argc, char **argv, char **envp) {
|
||||
|
||||
if (debug) {
|
||||
|
||||
SAYF(cMGN "[D]" cRST " cd \"%s\";", getthecwd());
|
||||
SAYF(cMGN "[D]" cRST " cd '%s';", getthecwd());
|
||||
for (i = 0; i < cc_par_cnt; i++)
|
||||
SAYF(" \"%s\"", cc_params[i]);
|
||||
SAYF(" '%s'", cc_params[i]);
|
||||
SAYF("\n");
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user