diff options
author | Steven Luong <sluong@cisco.com> | 2021-12-15 13:27:53 -0800 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2022-01-09 13:43:50 +0000 |
commit | 221be7c03f8daf5b9c00b2509ebbf2c6e7e6232d (patch) | |
tree | 59339ad44acede89b05d3e6d2dc853b0773e9887 /src/vnet/ip/lookup.c | |
parent | 6815bc3d8b966a62e46cd1dac3e357f20019999c (diff) |
fib: multiple memory leaks upon deleting a VRF table
fib_table->ft_locks
name string for parsing the ip table add|del name <tag> command
path list for ip4_specials in mfib
mfib->fib_entry_by_dst_address[0..32]
mfib entry path_ext, msrc->mfes_exts
Type: fix
Signed-off-by: Steven Luong <sluong@cisco.com>
Change-Id: Ia1e0cac577a73608ee1e4b1664b60a66322e81ce
Diffstat (limited to 'src/vnet/ip/lookup.c')
-rw-r--r-- | src/vnet/ip/lookup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index b678ce330c3..c2c4bae5041 100644 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -410,6 +410,7 @@ vnet_ip_table_cmd (vlib_main_t * vm, } done: + vec_free (name); unformat_free (line_input); return error; } |