From: Daeseok Youn Date: Tue, 1 Apr 2014 10:15:59 +0000 (+0900) Subject: xen: fix memory leak in __xen_pcibk_add_pci_dev() X-Git-Tag: v4.9.8~6405^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cea37f87519ca3172a4e8ddd3ffcd2b4232b341f;p=platform%2Fkernel%2Flinux-rpi3.git xen: fix memory leak in __xen_pcibk_add_pci_dev() It need to free dev_entry when it failed to assign to a new slot on the virtual PCI bus. smatch says: drivers/xen/xen-pciback/vpci.c:142 __xen_pcibk_add_pci_dev() warn: possible memory leak of 'dev_entry' Signed-off-by: Daeseok Youn Signed-off-by: David Vrabel --- diff --git a/drivers/xen/xen-pciback/vpci.c b/drivers/xen/xen-pciback/vpci.c index 3165ce3..51afff9 100644 --- a/drivers/xen/xen-pciback/vpci.c +++ b/drivers/xen/xen-pciback/vpci.c @@ -137,6 +137,8 @@ unlock: /* Publish this device. */ if (!err) err = publish_cb(pdev, 0, 0, PCI_DEVFN(slot, func), devid); + else + kfree(dev_entry); out: return err;