mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
fix
This commit is contained in:
@ -851,43 +851,47 @@ 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.
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
token_to_id["\t"] = current_id;
|
||||
id_to_token[current_id] = "\t";
|
||||
++current_id;
|
||||
token_to_id["\n"] = current_id;
|
||||
id_to_token[current_id] = "\n";
|
||||
++current_id;
|
||||
token_to_id["\r\n"] = current_id;
|
||||
id_to_token[current_id] = "\r\n";
|
||||
++current_id;
|
||||
token_to_id[" \n"] = current_id;
|
||||
id_to_token[current_id] = " \n";
|
||||
++current_id;
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
token_to_id["\t\t"] = current_id;
|
||||
id_to_token[current_id] = "\t\t";
|
||||
++current_id;
|
||||
token_to_id["\n\n"] = current_id;
|
||||
id_to_token[current_id] = "\n\n";
|
||||
++current_id;
|
||||
token_to_id["\r\n\r\n"] = current_id;
|
||||
id_to_token[current_id] = "\r\n\r\n";
|
||||
++current_id;
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
token_to_id["\t\t\t\t"] = current_id;
|
||||
id_to_token[current_id] = "\t\t\t\t";
|
||||
++current_id;
|
||||
token_to_id["\n\n\n\n"] = current_id;
|
||||
id_to_token[current_id] = "\n\n\n\n";
|
||||
++current_id;
|
||||
whitespace_ids = current_id;
|
||||
if (!alternative_tokenize) {
|
||||
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
token_to_id["\t"] = current_id;
|
||||
id_to_token[current_id] = "\t";
|
||||
++current_id;
|
||||
token_to_id["\n"] = current_id;
|
||||
id_to_token[current_id] = "\n";
|
||||
++current_id;
|
||||
token_to_id["\r\n"] = current_id;
|
||||
id_to_token[current_id] = "\r\n";
|
||||
++current_id;
|
||||
token_to_id[" \n"] = current_id;
|
||||
id_to_token[current_id] = " \n";
|
||||
++current_id;
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
token_to_id["\t\t"] = current_id;
|
||||
id_to_token[current_id] = "\t\t";
|
||||
++current_id;
|
||||
token_to_id["\n\n"] = current_id;
|
||||
id_to_token[current_id] = "\n\n";
|
||||
++current_id;
|
||||
token_to_id["\r\n\r\n"] = current_id;
|
||||
id_to_token[current_id] = "\r\n\r\n";
|
||||
++current_id;
|
||||
token_to_id[" "] = current_id;
|
||||
id_to_token[current_id] = " ";
|
||||
++current_id;
|
||||
token_to_id["\t\t\t\t"] = current_id;
|
||||
id_to_token[current_id] = "\t\t\t\t";
|
||||
++current_id;
|
||||
token_to_id["\n\n\n\n"] = current_id;
|
||||
id_to_token[current_id] = "\n\n\n\n";
|
||||
++current_id;
|
||||
whitespace_ids = current_id;
|
||||
|
||||
}
|
||||
|
||||
return data;
|
||||
|
||||
|
Reference in New Issue
Block a user