diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-12-16 09:18:41 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-12-16 09:18:41 -0500 |
| commit | f38687b8f5884b2912d57a4f3b893cce28560551 (patch) | |
| tree | 2188a80ed19a760ba60b91bc9470462c44263043 /nhrpd | |
| parent | a912f8fab7b1d4a58c2b97e93531330f30f84994 (diff) | |
lib, bgpd, nhrpd: Cleanup memory in lib/resolver on shutdown
This memory was not being cleaned up on shutdown. Fix this.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'nhrpd')
| -rw-r--r-- | nhrpd/nhrp_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nhrpd/nhrp_main.c b/nhrpd/nhrp_main.c index 73af78cbf0..983a03282b 100644 --- a/nhrpd/nhrp_main.c +++ b/nhrpd/nhrp_main.c @@ -92,6 +92,8 @@ static void nhrp_request_stop(void) nhrp_vc_terminate(); debugf(NHRP_DEBUG_COMMON, "Done."); + + resolver_terminate(); frr_fini(); exit(0); |
