diff options
author | Toni <matzeton@googlemail.com> | 2023-04-21 12:40:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 12:40:26 +0200 |
commit | b6629ba2befccec6356802fabf2d7a076133d900 (patch) | |
tree | d20488f45df942b59b3843350c213e2257be612c /fuzz/fuzz_config.cpp | |
parent | 85751ba9d7a67dfcb371d71803432918d70e2f3c (diff) |
Improved debug output. (#1951)
* try to get rid of some `printf(..)`s as they do not belong to a shared library
* replaced all `exit(..)`s with `abort()`s to indicate an abnormal process termination
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'fuzz/fuzz_config.cpp')
-rw-r--r-- | fuzz/fuzz_config.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fuzz/fuzz_config.cpp b/fuzz/fuzz_config.cpp index 177266ba7..8f98c5929 100644 --- a/fuzz/fuzz_config.cpp +++ b/fuzz/fuzz_config.cpp @@ -6,8 +6,6 @@ #include <assert.h> #include "fuzzer/FuzzedDataProvider.h" -extern "C" void ndpi_self_check_host_match(); /* Self check function */ - extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { FuzzedDataProvider fuzzed_data(data, size); struct ndpi_detection_module_struct *ndpi_info_mod; @@ -136,7 +134,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { ndpi_get_num_supported_protocols(ndpi_info_mod); ndpi_get_ndpi_num_custom_protocols(ndpi_info_mod); - ndpi_self_check_host_match(); + ndpi_self_check_host_match(stderr); /* Basic code to try testing this "config" */ bool_value = fuzzed_data.ConsumeBool(); |