Merge pull request #9615 from idryzhov/ospf6-null-deref

ospf6d: fix possible NULL dereference
This commit is contained in:
Mark Stapp 2021-09-15 10:05:29 -04:00 committed by GitHub
commit aae2caea77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1155,7 +1155,10 @@ DEFPY(show_ipv6_ospf6_gr_helper,
bool detail = false;
ospf6 = ospf6_lookup_by_vrf_name(VRF_DEFAULT_NAME);
OSPF6_CMD_CHECK_RUNNING();
if (ospf6 == NULL) {
vty_out(vty, "OSPFv3 is not configured\n");
return CMD_SUCCESS;
}
if (argv_find(argv, argc, "detail", &idx))
detail = true;