At end of program there is call to rte_free() which is passing a bogus value. There is no "bpf_filter" defined in this application; it ends up being a text address inside pcap library.
Fixes: cbb44143be74 ("app/dumpcap: add new packet capture application") Signed-off-by: Stephen Hemminger <step...@networkplumber.org> --- app/dumpcap/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dumpcap/main.c b/app/dumpcap/main.c index e0a3477d912f..e49558c2534a 100644 --- a/app/dumpcap/main.c +++ b/app/dumpcap/main.c @@ -849,7 +849,7 @@ int main(int argc, char **argv) pcap_dump_close(out.dumper); cleanup_pdump_resources(); - rte_free(bpf_filter); + rte_ring_free(r); rte_mempool_free(mp); -- 2.35.1