diff options
| author | Russ White <russ@riw.us> | 2025-02-04 11:16:27 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-04 11:16:27 -0500 | 
| commit | 0d017ef142e0802113995b63564a86e8260ac032 (patch) | |
| tree | ad9bdf83f6ad3106c35c4d22db0913acdf5e46ef | |
| parent | ba0b26427a63ddf2de8e83f9ad6bccb0ff05e1d5 (diff) | |
| parent | d9bee6fc63cc557f2d0ada186fc42b1d1141ddfc (diff) | |
Merge pull request #17995 from FRRouting/mergify/bp/stable/10.1/pr-17991
zebra: fix evpn svd hash avoid double free (backport #17991)
| -rw-r--r-- | zebra/zebra_vxlan.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index b8c11e186a..011ac9ef4b 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -1601,7 +1601,7 @@ static void svd_nh_del_terminate(void *ptr)  	struct zebra_neigh *n = ptr;  	n->refcnt = 0; -	svd_nh_del(n); +	XFREE(MTYPE_L3NEIGH, n);  }  | 
