From c8d6dd0821fda2cbceae25abf9ee9c4db992b100 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Fri, 21 Apr 2023 11:27:20 +0200 Subject: Improved debug output. * 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 --- fuzz/fuzz_config.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'fuzz') 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 #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(); -- cgit v1.2.3