diff options
author | Andres Salomon <dilinger@queued.net> | 2009-03-31 18:25:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-01 11:59:30 -0400 |
commit | 895d72279da7f24f266f9583c239e7b22230127c (patch) | |
tree | b120a3240285c3e4f0812c73505cb06a8174b30b /drivers/video/tdfxfb.c | |
parent | d4bc4e8af0a4a34c713f8c1a33a78cedffe8e0b7 (diff) |
tdfxfb: fix memory leaks in removal path
We were leaking the cmap memory.
Signed-off-by: Andres Salomon <dilinger@debian.org>
Acked-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/tdfxfb.c')
-rw-r--r-- | drivers/video/tdfxfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/tdfxfb.c b/drivers/video/tdfxfb.c index 14bd3f3680b8..ee64771fbe3d 100644 --- a/drivers/video/tdfxfb.c +++ b/drivers/video/tdfxfb.c | |||
@@ -1393,6 +1393,7 @@ static void __devexit tdfxfb_remove(struct pci_dev *pdev) | |||
1393 | release_mem_region(pci_resource_start(pdev, 0), | 1393 | release_mem_region(pci_resource_start(pdev, 0), |
1394 | pci_resource_len(pdev, 0)); | 1394 | pci_resource_len(pdev, 0)); |
1395 | pci_set_drvdata(pdev, NULL); | 1395 | pci_set_drvdata(pdev, NULL); |
1396 | fb_dealloc_cmap(&info->cmap); | ||
1396 | framebuffer_release(info); | 1397 | framebuffer_release(info); |
1397 | } | 1398 | } |
1398 | 1399 | ||