aboutsummaryrefslogtreecommitdiff
path: root/example/reader_util.c
diff options
context:
space:
mode:
authorOleg A. Arkhangelsky <sysoleg@yandex.ru>2019-10-29 21:11:31 +0300
committerOleg A. Arkhangelsky <sysoleg@yandex.ru>2019-10-29 21:11:31 +0300
commit9f5e5b90e5f460a9038f5e7ec2d8672049f861c1 (patch)
treed0756aba5c74d0efbc62f033894e8a4e03c01693 /example/reader_util.c
parentd2f04f5bdfe986082ca5e5f479a99e4c24a5a898 (diff)
Don't leak memory in live capture mode
Diffstat (limited to 'example/reader_util.c')
-rw-r--r--example/reader_util.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index 6cb150d87..be150ecf8 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -457,6 +457,14 @@ void ndpi_flow_info_freer(void *node) {
ndpi_free_flow_info_half(flow);
+ ndpi_free_flow_data_analysis(flow);
+
+ ndpi_free(flow);
+}
+
+/* ***************************************************** */
+
+void ndpi_free_flow_data_analysis(struct ndpi_flow_info *flow) {
if(flow->iat_c_to_s) ndpi_free_data_analysis(flow->iat_c_to_s);
if(flow->iat_s_to_c) ndpi_free_data_analysis(flow->iat_s_to_c);
@@ -464,8 +472,6 @@ void ndpi_flow_info_freer(void *node) {
if(flow->pktlen_s_to_c) ndpi_free_data_analysis(flow->pktlen_s_to_c);
if(flow->iat_flow) ndpi_free_data_analysis(flow->iat_flow);
-
- ndpi_free(flow);
}
/* ***************************************************** */