diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-11-11 22:58:16 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-11-13 09:16:45 -0500 | 
| commit | b8fdedc6b8ca7b8a75805b78aa6e7b48714ab3ec (patch) | |
| tree | 824b5f05715daaaaf20a8572c97fb497970aa6e7 /ospf6d/ospf6_main.c | |
| parent | d2aafaf5b68372b3520ee8406a52125119dc32db (diff) | |
ospf6d: Cleanup memory on shutdown
some list data structures were never freed
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospf6d/ospf6_main.c')
| -rw-r--r-- | ospf6d/ospf6_main.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c index 932304578a..2a189f1418 100644 --- a/ospf6d/ospf6_main.c +++ b/ospf6d/ospf6_main.c @@ -103,6 +103,7 @@ static void __attribute__((noreturn)) ospf6_exit(int status)  		zclient_free(zclient);  	} +	ospf6_master_delete();  	frr_fini();  	exit(status);  }  | 
