Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1b166b7 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Paul Mackerras
Browse files

[POWERPC] Fix possible NULL deref in ppc32 PCI



The 32-bit PCI code tests if "bus" is non-NULL after calling
pci_scan_bus_parented() in one place but not another before
dereferencing it.

Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 0094f2cd
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -442,9 +442,10 @@ static int __init pcibios_init(void)
		hose->last_busno = 0xff;
		hose->last_busno = 0xff;
		bus = pci_scan_bus_parented(hose->parent, hose->first_busno,
		bus = pci_scan_bus_parented(hose->parent, hose->first_busno,
					    hose->ops, hose);
					    hose->ops, hose);
		if (bus)
		if (bus) {
			pci_bus_add_devices(bus);
			pci_bus_add_devices(bus);
			hose->last_busno = bus->subordinate;
			hose->last_busno = bus->subordinate;
		}
		if (pci_assign_all_buses || next_busno <= hose->last_busno)
		if (pci_assign_all_buses || next_busno <= hose->last_busno)
			next_busno = hose->last_busno + pcibios_assign_bus_offset;
			next_busno = hose->last_busno + pcibios_assign_bus_offset;
	}
	}