diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2025-04-16 09:37:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-16 09:37:19 -0500 |
| commit | d8094eaaf2051dfd80a263e15f8d5011b859ca6f (patch) | |
| tree | 967475a0cbbb872b22f38d891dcce537e1dd5cae | |
| parent | a16024bd8c1f9986ea0f58923462b134dfec5695 (diff) | |
| parent | 791c2bc55ae15185653f0c09a7f166b686a59f92 (diff) | |
Merge pull request #18670 from FRRouting/mergify/bp/stable/10.3/pr-18667stable/10.3
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 */ |
