From 3107a958816f3a09ce39a36b42d03a0b0046225f Mon Sep 17 00:00:00 2001 From: Nardi Ivan Date: Tue, 9 Jan 2024 10:24:36 +0100 Subject: Make `ndpi_finalize_initialization()` returns an error code We should check if the initialization was fine or not --- example/ndpiReader.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'example/ndpiReader.c') diff --git a/example/ndpiReader.c b/example/ndpiReader.c index e597de3d4..3753bff12 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -2831,7 +2831,7 @@ static void on_protocol_discovered(struct ndpi_workflow * workflow, static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle) { NDPI_PROTOCOL_BITMASK enabled_bitmask; struct ndpi_workflow_prefs prefs; - int i; + int i, ret; ndpi_cfg_error rc; memset(&prefs, 0, sizeof(prefs)); @@ -2931,8 +2931,11 @@ static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle) { cfgs[i].proto, cfgs[i].param, cfgs[i].value, rc); } - - ndpi_finalize_initialization(ndpi_thread_info[thread_id].workflow->ndpi_struct); + ret = ndpi_finalize_initialization(ndpi_thread_info[thread_id].workflow->ndpi_struct); + if(ret != 0) { + fprintf(stderr, "Error ndpi_finalize_initialization: %d\n", ret); + exit(-1); + } if(enable_doh_dot_detection) ndpi_set_detection_preferences(ndpi_thread_info[thread_id].workflow->ndpi_struct, ndpi_pref_enable_tls_block_dissection, 1); -- cgit v1.2.3