aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-01-25 09:44:12 +0100
committervanhauser-thc <vh@thc.org>2022-01-25 09:44:12 +0100
commit0b5ad8ee84b237923738a5db104e612b039113bb (patch)
tree2206c689928d45d39822bd516dc92b92dc6f3dbe /utils
parent3a78db2aded30302416039b694dbf0bd198e1fc0 (diff)
downloadafl++-0b5ad8ee84b237923738a5db104e612b039113bb.tar.gz
nits
Diffstat (limited to 'utils')
-rw-r--r--utils/aflpp_driver/aflpp_driver.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/aflpp_driver/aflpp_driver.c b/utils/aflpp_driver/aflpp_driver.c
index c648674a..7289c845 100644
--- a/utils/aflpp_driver/aflpp_driver.c
+++ b/utils/aflpp_driver/aflpp_driver.c
@@ -251,17 +251,17 @@ int main(int argc, char **argv) {
printf(
"============================== INFO ================================\n"
"This binary is built for afl++.\n"
- "To use with afl-cmin or afl-cmin.bash pass '-' as single command line "
- "option\n"
- "To run the target function on individual input(s) execute this:\n"
+ "To run the target function on individual input(s) execute:\n"
" %s INPUT_FILE1 [INPUT_FILE2 ... ]\n"
- "To fuzz with afl-fuzz execute this:\n"
+ "To fuzz with afl-fuzz execute:\n"
" afl-fuzz [afl-flags] -- %s [-N]\n"
"afl-fuzz will run N iterations before re-spawning the process "
"(default: "
"INT_MAX)\n"
"For stdin input processing, pass '-' as single command line option.\n"
"For file input processing, pass '@@' as single command line option.\n"
+ "To use with afl-cmin or afl-cmin.bash pass '-' as single command line "
+ "option\n"
"===================================================================\n",
argv[0], argv[0]);
@@ -325,7 +325,7 @@ int main(int argc, char **argv) {
// Call LLVMFuzzerTestOneInput here so that coverage caused by initialization
// on the first execution of LLVMFuzzerTestOneInput is ignored.
- LLVMFuzzerTestOneInput(dummy_input, 1);
+ LLVMFuzzerTestOneInput(dummy_input, 4);
__asan_poison_memory_region(__afl_fuzz_ptr, MAX_FILE);
size_t prev_length = 0;