diff options
| author | Russ White <russ@riw.us> | 2019-11-08 15:29:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-08 15:29:05 -0500 |
| commit | 26109a787355d94036f838b693418f690d337178 (patch) | |
| tree | 40be28f33372e964c5a1c4ff0626f15100de3eda | |
| parent | 306c4dab553443e3a3b106dd64c2f3ffcde3fbb0 (diff) | |
| parent | 45206fe2d00bd2f0fc5994e6834fd00f9caf28f0 (diff) | |
Merge pull request #5298 from donaldsharp/bgp_prefix_rpki
bgpd: Fix missed prefix_free conversion in rpki code
| -rw-r--r-- | bgpd/bgp_rpki.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_rpki.c b/bgpd/bgp_rpki.c index 1267e35097..3b89e50ce4 100644 --- a/bgpd/bgp_rpki.c +++ b/bgpd/bgp_rpki.c @@ -406,7 +406,7 @@ static int bgpd_sync_callback(struct thread *thread) } } - prefix_free(prefix); + prefix_free(&prefix); return 0; } |
