Commit 36b66b53 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

[PATCH] IBM PCI Hotplug: fix memory leak found by checker project.

parent ae7acefc
...@@ -951,6 +951,7 @@ static int configure_bridge (struct pci_func **func_passed, u8 slotno) ...@@ -951,6 +951,7 @@ static int configure_bridge (struct pci_func **func_passed, u8 slotno)
if (rc) { if (rc) {
if (rc == -ENOMEM) { if (rc == -ENOMEM) {
ibmphp_remove_bus (bus, func->busno); ibmphp_remove_bus (bus, func->busno);
kfree (amount_needed);
return rc; return rc;
} }
retval = rc; retval = rc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment