From 1a8ec2b9a3557e4f6ad3c8780b72b35be6d86a3e Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Thu, 11 May 2006 13:34:08 +0000 Subject: [ospfd] Check NULL result from ospf_area_lookup_by_area_id, CID #69 2006-05-11 Paul Jakma * ospf_vty.c: (no_ospf_area_filter_list) Check NULL result from ospf_area_lookup_by_area_id, fixes Coverity CID #69 --- ospfd/ChangeLog | 2 ++ ospfd/ospf_vty.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'ospfd') 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 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) { -- cgit v1.2.1