提交 f01f4182 编写于 作者: J Jesper Juhl 提交者: Greg Kroah-Hartman

[PATCH] PCI: fix potential resource leak in drivers/pci/msi.c

The coverity checker spotted (as entry #599) that we might leak `entry' in
drivers/pci/msi.c::msix_capability_init()
This patch should take care of that.
Signed-off-by: NJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 9b860b8c
...@@ -793,8 +793,10 @@ static int msix_capability_init(struct pci_dev *dev, ...@@ -793,8 +793,10 @@ static int msix_capability_init(struct pci_dev *dev,
if (!entry) if (!entry)
break; break;
vector = get_msi_vector(dev); vector = get_msi_vector(dev);
if (vector < 0) if (vector < 0) {
kmem_cache_free(msi_cachep, entry);
break; break;
}
j = entries[i].entry; j = entries[i].entry;
entries[i].vector = vector; entries[i].vector = vector;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册