From: Ben Hutchings Date: Thu, 13 Jan 2011 19:47:56 +0000 (+0000) Subject: PCI: sysfs: Fix failure path for addition of "vpd" attribute X-Git-Tag: v2.6.35.12~69 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7a0c7104fc7aba88bfc8138224f5ee2f2391ce28;p=karo-tx-linux.git PCI: sysfs: Fix failure path for addition of "vpd" attribute commit 0f12a4e29368a9476076515881d9ef4e5876c6e2 upstream. Commit 280c73d ("PCI: centralize the capabilities code in pci-sysfs.c") changed the initialisation of the "rom" and "vpd" attributes, and made the failure path for the "vpd" attribute incorrect. We must free the new attribute structure (attr), but instead we currently free dev->vpd->attr. That will normally be NULL, resulting in a memory leak, but it might be a stale pointer, resulting in a double-free. Found by inspection; compile-tested only. Signed-off-by: Ben Hutchings Signed-off-by: Jesse Barnes Signed-off-by: Greg Kroah-Hartman Signed-off-by: Andi Kleen --- diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c index 3d9f3eb45082..d4ad1bd20ac5 100644 --- a/drivers/pci/pci-sysfs.c +++ b/drivers/pci/pci-sysfs.c @@ -1018,7 +1018,7 @@ static int pci_create_capabilities_sysfs(struct pci_dev *dev) attr->write = write_vpd_attr; retval = sysfs_create_bin_file(&dev->dev.kobj, attr); if (retval) { - kfree(dev->vpd->attr); + kfree(attr); return retval; } dev->vpd->attr = attr;