update instrumenation/README.instrument_file.md for gcc_plugin

This commit is contained in:
van Hauser
2020-09-08 17:15:32 +02:00
parent c091340a85
commit 2802245da7
4 changed files with 64 additions and 56 deletions

View File

@ -93,9 +93,9 @@ void setup_custom_mutators(afl_state_t *afl) {
}
struct custom_mutator *mutator = load_custom_mutator_py(afl, module_name);
struct custom_mutator *m = load_custom_mutator_py(afl, module_name);
afl->custom_mutators_count++;
list_append(&afl->custom_mutator_list, mutator);
list_append(&afl->custom_mutator_list, m);
}