diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-11-30 13:48:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-30 13:48:38 -0500 |
| commit | d5ecf80558c023878f1b2a4ab76e59042f8cbb10 (patch) | |
| tree | 1e7b5ed66fa09c288ed39af124d6bdbdbb0f57b5 /zebra/zebra_rib.c | |
| parent | 78695ce3a4d4faf6930f057b55c316b74a7426eb (diff) | |
| parent | a20e6c32a25e3e48c49f91430bd73abaa2e1352e (diff) | |
Merge pull request #7631 from mjstapp/fix_pw_ctx_leak
zebra: free dplane ctx after pw update
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 569b23573c..88f6ec2634 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -3728,6 +3728,7 @@ static int handle_pw_result(struct zebra_dplane_ctx *ctx) } done: + dplane_ctx_fini(&ctx); return 0; } |
