From a01499ae5448c932ebde6c412c316c15e922787c Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Tue, 8 Oct 2024 10:41:53 +0200 Subject: TTL Cache Fix (#2582) * Added missing free * Win fix --- src/lib/ndpi_cache.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/lib/ndpi_cache.c b/src/lib/ndpi_cache.c index f375c019d..1efb99f6d 100644 --- a/src/lib/ndpi_cache.c +++ b/src/lib/ndpi_cache.c @@ -258,6 +258,7 @@ void ndpi_term_address_cache(struct ndpi_address_cache *cache) { } ndpi_free(cache->address_cache_root); + ndpi_free(cache); } /* ***************************************************** */ -- cgit v1.2.3