diff options
| author | rgirada <rgirada@vmware.com> | 2020-03-07 17:22:52 -0800 |
|---|---|---|
| committer | rgirada <rgirada@vmware.com> | 2020-03-07 17:22:52 -0800 |
| commit | a4155a1b355b5ff93aadab8743f6ff8cf061be90 (patch) | |
| tree | 0eabf52db24c11fc5dfabfe3a79343cdd500adb1 /staticd/static_vrf.c | |
| parent | 43086da665afede14908a231f7e242632db19e9a (diff) | |
staticd: Fixing memory leak issue
Memory allotted for staticd specific vrf structers is not
being deallocated when the corresponding vrf is destroyed.
Signed-off-by: Rajesh Girada <rgirada@vmware.com>
Diffstat (limited to 'staticd/static_vrf.c')
| -rw-r--r-- | staticd/static_vrf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/staticd/static_vrf.c b/staticd/static_vrf.c index abb64aad3f..6c065932a1 100644 --- a/staticd/static_vrf.c +++ b/staticd/static_vrf.c @@ -111,6 +111,7 @@ static int static_vrf_delete(struct vrf *vrf) svrf->stable[afi][safi] = NULL; } } + XFREE(MTYPE_TMP, svrf); return 0; } @@ -204,3 +205,8 @@ void static_vrf_init(void) vrf_cmd_init(static_vrf_config_write, &static_privs); } + +void static_vrf_terminate(void) +{ + vrf_terminate(); +} |
