mirror of https://gitee.com/openkylin/linux.git
[SPARC64]: check for possible NULL pointer dereference
This patch adds checking for possible NULL pointer dereference if of_find_property() failed. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
794b26e060
commit
75c6d1410c
|
@ -1022,6 +1022,10 @@ void __init sun4v_pci_init(struct device_node *dp, char *model_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
prop = of_find_property(dp, "reg", NULL);
|
prop = of_find_property(dp, "reg", NULL);
|
||||||
|
if (!prop) {
|
||||||
|
prom_printf("SUN4V_PCI: Could not find config registers\n");
|
||||||
|
prom_halt();
|
||||||
|
}
|
||||||
regs = prop->value;
|
regs = prop->value;
|
||||||
|
|
||||||
devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
|
devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff;
|
||||||
|
|
Loading…
Reference in New Issue