mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
i7core_edac: Call pci_dev_put() when alloc_i7core_dev() failed
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
628c5ddfb0
commit
2896637b86
@ -1384,8 +1384,10 @@ static int i7core_get_onedevice(struct pci_dev **prev,
|
||||
i7core_dev = get_i7core_dev(socket);
|
||||
if (!i7core_dev) {
|
||||
i7core_dev = alloc_i7core_dev(socket, table);
|
||||
if (!i7core_dev)
|
||||
if (!i7core_dev) {
|
||||
pci_dev_put(pdev);
|
||||
return -ENOMEM;
|
||||
}
|
||||
}
|
||||
|
||||
if (i7core_dev->pdev[devno]) {
|
||||
|
Loading…
Reference in New Issue
Block a user