Commits
Paul Jakma authored bfd7c7dc067
6 6 | #29. |
7 7 | (struct lsa_action) remove unused member. |
8 8 | * ospf_interface.c: (ospf_if_exists) Fix missing NULL return |
9 9 | check on ospf_lookup, CID #27. |
10 10 | * ospf_asbr.c: (ospf_redistribute_withdraw) remove ospf_lookup |
11 11 | call by taking the struct ospf * as argument, which the |
12 12 | caller has, fixing CID #28. |
13 13 | * ospf_asbr.h: (ospf_redistribute_withdraw) update declaration |
14 14 | * ospf_zebra.c: (ospf_redistribute_unset) update call to |
15 15 | ospf_redistribute_withdraw to match. |
16 + | * ospf_ia.c: (ospf_update_router_route) ospf->backbone could be |
17 + | NULL when passed to ospf_find_asbr_route_through_area, |
18 + | check for NULL first, CID #14. |
16 19 | |
17 20 | 2006-05-11 Paul Jakma <paul.jakma@sun.com> |
18 21 | |
19 22 | * ospf_vty.c: (general) Audit ospf_lookup calls in commands, |
20 23 | ensure check for NULL result, make vty messages consistent. |
21 24 | (show_ip_ospf_interface) Missing NULL check on ospf_lookup |
22 25 | result, fixes Coverity CID #70. |
23 26 | (no_ospf_area_filter_list) Check NULL result from |
24 27 | ospf_area_lookup_by_area_id, fixes Coverity CID #69 |
25 28 | * ospf_route.c: (ospf_route_delete_same_ext) Fix deref before |