[PATCH] SCSI: aic7xxx_osm_pci resource leak fix.

From: Jesper Juhl
Date: Sun Apr 23 2006 - 14:15:43 EST



Fix resource leak in
drivers/scsi/aic7xxx/aic7xxx_osm_pci.c::ahc_linux_pci_dev_probe()

Found by the coverity checker (#668)


Signed-off-by: Jesper Juhl <jesper.juhl@xxxxxxxxx>
---

drivers/scsi/aic7xxx/aic7xxx_osm_pci.c | 1 +
1 files changed, 1 insertion(+)

--- linux-2.6.17-rc2-git4-orig/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c 2006-03-20 06:53:29.000000000 +0100
+++ linux-2.6.17-rc2-git4/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c 2006-04-23 20:05:50.000000000 +0200
@@ -219,6 +219,7 @@ ahc_linux_pci_dev_probe(struct pci_dev *
ahc->flags |= AHC_39BIT_ADDRESSING;
} else {
if (dma_set_mask(dev, DMA_32BIT_MASK)) {
+ ahc_free(ahc);
printk(KERN_WARNING "aic7xxx: No suitable DMA available.\n");
return (-ENODEV);
}




(please keep replies CC'ed to me)


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/