diff options
author | Luca Deri <deri@ntop.org> | 2020-01-06 22:25:20 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-01-06 22:25:20 +0100 |
commit | 691778df331487b91acdd17c8e3a861e1325036b (patch) | |
tree | 61f16f63870684b4b5e3bd994c0a43e57a9b1a6a | |
parent | 81c3f5813c500e92fbffe96675150ea0dc3ab672 (diff) |
Cosmetic fixes
-rw-r--r-- | src/lib/ndpi_main.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |