diff options
author | Campus <campus@ntop.org> | 2016-02-18 00:29:06 +0100 |
---|---|---|
committer | Campus <campus@ntop.org> | 2016-02-18 00:29:06 +0100 |
commit | 4c3d9788dded5ec40ab28e293100b69f29bfbdca (patch) | |
tree | 03d5407fc88febd738eae4889ac016289b995720 /src/lib/ndpi_main.c | |
parent | 84976ed5dc001050613667c172709e82f124f36d (diff) |
added missing free for idle flow in ndpiReader.c
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 994f09848..636d3ca73 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -306,7 +306,7 @@ void* ndpi_calloc(unsigned long count, size_t size) { /* ****************************************** */ -void ndpi_free(void *ptr) { _ndpi_free(ptr); } +void ndpi_free(void *ptr) { _ndpi_free(ptr); } /* ****************************************** */ |