diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-10-10 21:18:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 21:18:24 +0200 |
commit | 785f80f9e776e68b5458576ef958499b208171a3 (patch) | |
tree | b94a829e8ea1b86ce813a70a628242c7c813972e /fuzz/fuzz_readerutils_parseprotolist.cpp | |
parent | 7bdb2796c3c478d99ffd1bb97e74bfa1766f58c0 (diff) |
fuzz: fix fuzzing (#2586)
Diffstat (limited to 'fuzz/fuzz_readerutils_parseprotolist.cpp')
-rw-r--r-- | fuzz/fuzz_readerutils_parseprotolist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz_readerutils_parseprotolist.cpp b/fuzz/fuzz_readerutils_parseprotolist.cpp index 167cd0000..9b3549cf6 100644 --- a/fuzz/fuzz_readerutils_parseprotolist.cpp +++ b/fuzz/fuzz_readerutils_parseprotolist.cpp @@ -13,7 +13,7 @@ u_int8_t max_num_udp_dissected_pkts = 16 /* 8 is enough for most protocols, Sign int malloc_size_stats = 0; FILE *fingerprint_fp = NULL; bool do_load_lists = false; - +char *addr_dump_path = NULL; extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { FuzzedDataProvider fuzzed_data(data, size); |