diff options
author | Donald Sharp <sharpd@nvidia.com> | 2020-11-14 23:32:01 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2020-11-15 00:17:27 +0100 |
commit | 8f15843bba7b0e0fef6479a4447ee333be3ea9e8 (patch) | |
tree | 7601e0a514bcf3b0c6f8355194e2d537116dad02 /isisd/isis_spf.h | |
parent | bfdd: On interface address delete we are leaking memory (diff) | |
download | frr-8f15843bba7b0e0fef6479a4447ee333be3ea9e8.tar.xz frr-8f15843bba7b0e0fef6479a4447ee333be3ea9e8.zip |
isisd: On shutdown leaking spf_timer thread data
When isis is being shutdown the area->spf_timer thread has
special data assigned to that was never being freed.
Free this data.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'isisd/isis_spf.h')
-rw-r--r-- | isisd/isis_spf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/isisd/isis_spf.h b/isisd/isis_spf.h index a9a14fc75..ad15d3e3c 100644 --- a/isisd/isis_spf.h +++ b/isisd/isis_spf.h @@ -78,4 +78,5 @@ struct isis_spftree *isis_run_hopcount_spf(struct isis_area *area, uint8_t *sysid, struct isis_spftree *spftree); +void isis_spf_timer_free(void *run); #endif /* _ZEBRA_ISIS_SPF_H */ |