ip: fix memory leak in ip_dump handler

Type: fix

A vector allocated by vl_api_ip_dump_t_handler() was not being
freed.

Change-Id: I13425b8087e60df60c6aaa1230aa7e6d60b101a8
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
(cherry picked from commit 6d5f6592559bc0db4294c53236177d4e35e603c6)
This commit is contained in:
Matthew Smith 2019-09-18 13:51:46 -05:00 committed by Andrew Yourtchenko
parent 4afd0a1298
commit 45aab261a1

View File

@ -1050,6 +1050,8 @@ vl_api_ip_dump_t_handler (vl_api_ip_dump_t * mp)
send_ip_details (am, reg, sw_if_index, mp->is_ipv6, mp->context);
}
}
vec_free (sorted_sis);
}
static void