Pārlūkot izejas kodu

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>
Hidetoshi Seto 15 gadi atpakaļ
vecāks
revīzija
2896637b86
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. 3 1
      drivers/edac/i7core_edac.c

+ 3 - 1
drivers/edac/i7core_edac.c

@@ -1384,8 +1384,10 @@ static int i7core_get_onedevice(struct pci_dev **prev,
 	i7core_dev = get_i7core_dev(socket);
 	i7core_dev = get_i7core_dev(socket);
 	if (!i7core_dev) {
 	if (!i7core_dev) {
 		i7core_dev = alloc_i7core_dev(socket, table);
 		i7core_dev = alloc_i7core_dev(socket, table);
-		if (!i7core_dev)
+		if (!i7core_dev) {
+			pci_dev_put(pdev);
 			return -ENOMEM;
 			return -ENOMEM;
+		}
 	}
 	}
 
 
 	if (i7core_dev->pdev[devno]) {
 	if (i7core_dev->pdev[devno]) {