From 691778df331487b91acdd17c8e3a861e1325036b Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Mon, 6 Jan 2020 22:25:20 +0100 Subject: Cosmetic fixes --- src/lib/ndpi_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 03b54231b..88a9bbfe4 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -3835,10 +3835,10 @@ static int ndpi_init_packet_header(struct ndpi_detection_module_struct *ndpi_str u_int8_t backup; u_int16_t backup1, backup2; - if(flow->http.url) ndpi_free(flow->http.url), flow->http.url = NULL; - if(flow->http.content_type) ndpi_free(flow->http.content_type), flow->http.content_type = NULL; - if(flow->http.user_agent) ndpi_free(flow->http.user_agent), flow->http.user_agent = NULL; - if(flow->l4.tcp.tls.message.buffer) ndpi_free(flow->l4.tcp.tls.message.buffer), flow->l4.tcp.tls.message.buffer = NULL; + if(flow->http.url) { ndpi_free(flow->http.url); flow->http.url = NULL; } + if(flow->http.content_type) { ndpi_free(flow->http.content_type); flow->http.content_type = NULL; } + if(flow->http.user_agent) { ndpi_free(flow->http.user_agent); flow->http.user_agent = NULL; } + if(flow->l4.tcp.tls.message.buffer) { ndpi_free(flow->l4.tcp.tls.message.buffer); flow->l4.tcp.tls.message.buffer = NULL; } backup = flow->num_processed_pkts; backup1 = flow->guessed_protocol_id; -- cgit v1.2.3