mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 04:18:06 +00:00
fixed ngram size unset
This commit is contained in:
@ -1108,7 +1108,7 @@ int main(int argc, char **argv, char **envp) {
|
|||||||
|
|
||||||
if (!*ptr) {
|
if (!*ptr) {
|
||||||
|
|
||||||
if ((ptr = getenv("AFL_LLVM_NGRAM_SIZE")) != NULL)
|
if ((ptr = getenv("AFL_LLVM_NGRAM_SIZE")) == NULL)
|
||||||
FATAL(
|
FATAL(
|
||||||
"you must set the NGRAM size with (e.g. for value 2) "
|
"you must set the NGRAM size with (e.g. for value 2) "
|
||||||
"AFL_LLVM_INSTRUMENT=ngram-2");
|
"AFL_LLVM_INSTRUMENT=ngram-2");
|
||||||
|
Reference in New Issue
Block a user