Эх сурвалжийг харах

PCI: rcar: Fix memory leak when no PCIe card is inserted

When no PCIe card is inserted, there is a memory leak as
pci_free_resource_list() is not called before returning.

Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
Harunobu Kurokawa 8 жил өмнө
parent
commit
ddd535f1ea

+ 1 - 0
drivers/pci/host/pcie-rcar.c

@@ -1196,6 +1196,7 @@ err_pm_disable:
 
 err_free_bridge:
 	pci_free_host_bridge(bridge);
+	pci_free_resource_list(&pcie->resources);
 
 	return err;
 }