mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
ripd: fix another memtype mismatch
Fixes #13447. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
32a2f283d1
commit
76f444a5d3
|
@ -34,6 +34,7 @@
|
|||
|
||||
#include "ripd/ripd.h"
|
||||
#include "ripd/rip_nb.h"
|
||||
#include "ripd/rip_bfd.h"
|
||||
#include "ripd/rip_debug.h"
|
||||
#include "ripd/rip_errors.h"
|
||||
#include "ripd/rip_interface.h"
|
||||
|
@ -3346,7 +3347,7 @@ void rip_clean(struct rip *rip)
|
|||
route_table_finish(rip->distance_table);
|
||||
|
||||
RB_REMOVE(rip_instance_head, &rip_instances, rip);
|
||||
XFREE(MTYPE_TMP, rip->default_bfd_profile);
|
||||
XFREE(MTYPE_RIP_BFD_PROFILE, rip->default_bfd_profile);
|
||||
XFREE(MTYPE_RIP_VRF_NAME, rip->vrf_name);
|
||||
XFREE(MTYPE_RIP, rip);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue