diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2011-01-13 19:47:56 +0000 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-06-26 12:47:06 -0400 |
commit | ad2ca3d1e1ebfd49373f99a5336e70658dfb5114 (patch) | |
tree | df9a83e181a5c5231580e1a536114d03d9b885d5 /drivers | |
parent | 2bf25aa6c13b26ceaf5861767ab00a5a69c8a348 (diff) | |
download | linux-stable-ad2ca3d1e1ebfd49373f99a5336e70658dfb5114.tar.gz linux-stable-ad2ca3d1e1ebfd49373f99a5336e70658dfb5114.tar.bz2 linux-stable-ad2ca3d1e1ebfd49373f99a5336e70658dfb5114.zip |
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 <bhutchings@solarflare.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/pci-sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c index f5cd68c1b1e4..e1783bb7284d 100644 --- a/drivers/pci/pci-sysfs.c +++ b/drivers/pci/pci-sysfs.c @@ -995,7 +995,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; |