diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-10 17:08:32 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-10 17:09:05 -0400 |
| commit | 5b51cf7c9c05b3c54f76c362110ec46bcfa39dab (patch) | |
| tree | 280d9993a561945c9bfd000aea14ce67ee295c22 | |
| parent | 84519c816445c7105d4a70f43b92b3ee5ab3802d (diff) | |
ospfd: We should not be deleting ospf->oiflist 2 times
The ospf->oiflist deletion is happening 2 times now.
Let's delete it once only.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -rw-r--r-- | ospfd/ospfd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ospfd/ospfd.c b/ospfd/ospfd.c index 0a9a53dbb2..e74f13c961 100644 --- a/ospfd/ospfd.c +++ b/ospfd/ospfd.c @@ -737,7 +737,6 @@ static void ospf_finish_final(struct ospf *ospf) list_delete_and_null(&ospf->areas); list_delete_and_null(&ospf->oi_write_q); - list_delete_and_null(&ospf->oiflist); for (i = ZEBRA_ROUTE_SYSTEM; i <= ZEBRA_ROUTE_MAX; i++) { struct list *ext_list; |
