mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
fix
This commit is contained in:
@ -851,6 +851,8 @@ extern "C" my_mutator_t *afl_custom_init(afl_state *afl, unsigned int seed) {
|
||||
// set common whitespace tokens
|
||||
// we deliberately do not put uncommon ones here to these will count as
|
||||
// identifier tokens.
|
||||
if (!alternative_tokenize) {
|
||||
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
@ -889,6 +891,8 @@ extern "C" my_mutator_t *afl_custom_init(afl_state *afl, unsigned int seed) {
|
||||
++current_id;
|
||||
whitespace_ids = current_id;
|
||||
|
||||
}
|
||||
|
||||
return data;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user