From 7318c420d1bddd51ea69b433113ac843af2aee3b Mon Sep 17 00:00:00 2001 From: Mohsin Kazmi Date: Mon, 4 Oct 2021 11:29:08 +0200 Subject: [PATCH] interface: free the output_node_thread_runtimes Type: fix output_node_thread_runtimes was not freed when an interface is deleted. This patch fixes it. Change-Id: I763b0109be1904d43839528a346f3b9aa8927205 Signed-off-by: Mohsin Kazmi --- src/vnet/interface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vnet/interface.c b/src/vnet/interface.c index 7b5d4d6df66..ad6d9ccfdb8 100644 --- a/src/vnet/interface.c +++ b/src/vnet/interface.c @@ -1113,6 +1113,7 @@ vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index) hash_unset_mem (im->hw_interface_by_name, hw->name); vec_free (hw->name); vec_free (hw->hw_address); + vec_free (hw->output_node_thread_runtimes); pool_put (im->hw_interfaces, hw); } -- 2.16.6