diff options
-rw-r--r-- | ospfd/ChangeLog | 2 | ||||
-rw-r--r-- | ospfd/ospf_vty.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 46639516..6cb83f9a 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -4,6 +4,8 @@ ensure check for NULL result, make vty messages consistent. (show_ip_ospf_interface) Missing NULL check on ospf_lookup result, fixes Coverity CID #70. + (no_ospf_area_filter_list) Check NULL result from + ospf_area_lookup_by_area_id, fixes Coverity CID #69 2006-04-24 Paul Jakma <paul.jakma@sun.com> diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index c5a69dce..8d6ff31f 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -1896,7 +1896,9 @@ DEFUN (no_ospf_area_filter_list, VTY_GET_OSPF_AREA_ID (area_id, format, argv[0]); - area = ospf_area_lookup_by_area_id (ospf, area_id); + if ((area = ospf_area_lookup_by_area_id (ospf, area_id)) == NULL) + return CMD_SUCCESS; + plist = prefix_list_lookup (AFI_IP, argv[1]); if (strncmp (argv[2], "in", 2) == 0) { |