| Submitter | Julia Lawall |
|---|---|
| Date | Feb. 8, 2009, 9:44 p.m. |
| Message ID | <Pine.LNX.4.64.0902082243200.25891@ask.diku.dk> |
| Download | mbox | patch |
| Permalink | /patch/22620/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Julia Lawall <julia@diku.dk> Date: Sun, 8 Feb 2009 22:44:16 +0100 (CET) > Error handling code following a kmalloc should free the allocated data. ... > Signed-off-by: Julia Lawall <julia@diku.dk> Applied, thanks Julia. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c index 72fc0f7..89d7a6e 100644 --- a/drivers/atm/solos-pci.c +++ b/drivers/atm/solos-pci.c @@ -685,6 +685,7 @@ static int fpga_probe(struct pci_dev *dev, const struct pci_device_id *id) out_release_regions: pci_release_regions(dev); out: + kfree(card); return err; }