diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2025-04-16 09:37:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-16 09:37:33 -0500 |
| commit | 646bf178de61158dc06b40d666e5d0d071b47bfb (patch) | |
| tree | 5e1d4becd8a069bde479e5c6a3477a7aeb96901a | |
| parent | cc8a1f53a0bdf7acbb659d3abae155b7931c7bb0 (diff) | |
| parent | e31d3b8cd929e61f5321d83317b703d6e2ca1b3b (diff) | |
Merge pull request #18671 from FRRouting/mergify/bp/stable/10.2/pr-18667
isisd: fix srv6_sid memory leak (backport #18667)
| -rw-r--r-- | isisd/isis_zebra.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/isisd/isis_zebra.c b/isisd/isis_zebra.c index b985ad1f7d..b8baca19be 100644 --- a/isisd/isis_zebra.c +++ b/isisd/isis_zebra.c @@ -1501,6 +1501,7 @@ static int isis_zebra_srv6_sid_notify(ZAPI_CALLBACK_ARGS) isis_zebra_srv6_sid_uninstall(area, sid); listnode_delete(area->srv6db.srv6_sids, sid); + isis_srv6_sid_free(sid); } /* Allocate new SRv6 End SID */ |
