Skip to content

Commit

Permalink
Merge pull request #17679 from FRRouting/mergify/bp/stable/10.1/pr-17675
Browse files Browse the repository at this point in the history
bgpd: Fix memory leak when creating BMP connection with a source interface (backport #17675)
  • Loading branch information
Jafaral authored Dec 23, 2024
2 parents 65daeaa + 6084fd0 commit bf2aa85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bgpd/bgp_bmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2433,8 +2433,11 @@ DEFPY(bmp_connect,
}

ba = bmp_active_get(bt, hostname, port);
if (srcif)
if (srcif) {
if (ba->ifsrc)
XFREE(MTYPE_TMP, ba->ifsrc);
ba->ifsrc = XSTRDUP(MTYPE_TMP, srcif);
}
if (min_retry_str)
ba->minretry = min_retry;
if (max_retry_str)
Expand Down

0 comments on commit bf2aa85

Please sign in to comment.