diff options
author | Luca Deri <deri@ntop.org> | 2019-09-14 15:00:52 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-09-14 15:00:52 +0200 |
commit | 00e639d51301ccbaa2c14a47e829bdfe1831e226 (patch) | |
tree | aa3ac6ff61dfb3a367b6e3b9fe75ce84965165c0 /src/lib/ndpi_main.c | |
parent | 659f75138c2a95e5823608a545b9a3d3ced223bc (diff) |
TLS certificate hash is not reported
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index b485fe631..8eb9f2260 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -6119,6 +6119,10 @@ void ndpi_free_flow(struct ndpi_flow_struct *flow) { if(flow) { if(flow->http.url) ndpi_free(flow->http.url); if(flow->http.content_type) ndpi_free(flow->http.content_type); + + if(flow->l4.tcp.tls_srv_cert_fingerprint_ctx) + ndpi_free(flow->l4.tcp.tls_srv_cert_fingerprint_ctx); + ndpi_free(flow); } } |