diff options
-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; |