diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-08-27 15:32:42 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-08-27 15:32:42 +0200 |
commit | afd250f5d9d04b6fca4a86f290667b774a8dc365 (patch) | |
tree | 625c1c1a0d5be41525018890464f2d93c67f6070 /src/lib | |
parent | 25f3a7cd1d6b86930649f91ac4b781b4155ae411 (diff) |
fix compilation and symbol check
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ndpi_domain_classify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_domain_classify.c b/src/lib/ndpi_domain_classify.c index 80da78aa5..d94d692fa 100644 --- a/src/lib/ndpi_domain_classify.c +++ b/src/lib/ndpi_domain_classify.c @@ -94,7 +94,7 @@ static u_int32_t ndpi_domain_search_size(ndpi_domain_search *search) { char *buf; total_len += ndpi_bitmap_serialize(search->bitmap[i], &buf); - free(buf); + ndpi_free(buf); } return(total_len); |