diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2024-09-16 10:10:49 +0200 |
---|---|---|
committer | Nardi Ivan <nardi.ivan@gmail.com> | 2024-09-16 10:10:49 +0200 |
commit | f3104240372794ab8572abd73ca0b90f79ce88f6 (patch) | |
tree | d906935f79f1963976f911dc2cbebce144468811 /fuzz/fuzz_readerutils_workflow.cpp | |
parent | 6de91c78955a0d85d97518c273366bd9d6ede5de (diff) |
fuzz: fix compilation
Diffstat (limited to 'fuzz/fuzz_readerutils_workflow.cpp')
-rw-r--r-- | fuzz/fuzz_readerutils_workflow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzz/fuzz_readerutils_workflow.cpp b/fuzz/fuzz_readerutils_workflow.cpp index 3517003b6..34636e5e9 100644 --- a/fuzz/fuzz_readerutils_workflow.cpp +++ b/fuzz/fuzz_readerutils_workflow.cpp @@ -13,6 +13,7 @@ u_int8_t enable_flow_stats = 0; u_int8_t human_readeable_string_len = 5; u_int8_t max_num_udp_dissected_pkts = 16 /* 8 is enough for most protocols, Signal requires more */, max_num_tcp_dissected_pkts = 80 /* due to telnet */; int malloc_size_stats = 0; +FILE *fingerprint_fp = NULL; extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { FuzzedDataProvider fuzzed_data(data, size); |