From: Amol Lad Date: Fri, 8 Dec 2006 10:40:04 +0000 (-0800) Subject: [PATCH] ioremap balanced with iounmap for drivers/video/tgafb X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e4bf051b4f3121c5abdde836b1429e4a4459adb4;p=deliverable%2Flinux.git [PATCH] ioremap balanced with iounmap for drivers/video/tgafb ioremap must be balanced by an iounmap and failing to do so can result in a memory leak. Signed-off-by: Amol Lad Cc: "Antonino A. Daplas" Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/tgafb.c b/drivers/video/tgafb.c index 08b3153bfb3f..4b88fab83b74 100644 --- a/drivers/video/tgafb.c +++ b/drivers/video/tgafb.c @@ -1439,6 +1439,8 @@ tgafb_pci_register(struct pci_dev *pdev, const struct pci_device_id *ent) return 0; err1: + if (mem_base) + iounmap(mem_base); release_mem_region(bar0_start, bar0_len); err0: kfree(all);