]> git.baikalelectronics.ru Git - kernel.git/commit
PCI/sysfs: Fix double free in error path
authorSascha Hauer <s.hauer@pengutronix.de>
Tue, 8 Nov 2022 23:05:59 +0000 (17:05 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jan 2023 10:41:49 +0000 (11:41 +0100)
commit541f5575fdb207020528b3f6bc95c968af3b130d
tree48448ba02090b957dcb4245d30e495536b128ffc
parentf8fffc3656705480f21079d62cfa72ccda1264ac
PCI/sysfs: Fix double free in error path

commit aa382ffa705bea9931ec92b6f3c70e1fdb372195 upstream.

When pci_create_attr() fails, pci_remove_resource_files() is called which
will iterate over the res_attr[_wc] arrays and frees every non NULL entry.
To avoid a double free here set the array entry only after it's clear we
successfully initialized it.

Fixes: 32ac6d4588e4 ("PCI: Don't leak memory if sysfs_create_bin_file() fails")
Link: https://lore.kernel.org/r/20221007070735.GX986@pengutronix.de/
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/pci/pci-sysfs.c