diff options
author | Andres Salomon <dilinger@queued.net> | 2009-03-31 18:25:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-01 11:59:30 -0400 |
commit | 5e266e2e0e19532c1b8e2e2bff1eb6ccf42e478a (patch) | |
tree | 72723ec1a9c492402725c34bb7c50d909c961f5e /drivers/video | |
parent | 07b39b49b402355a7172c113102a8b68aafb17dd (diff) |
vfb: 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')
-rw-r--r-- | drivers/video/vfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/vfb.c b/drivers/video/vfb.c index 93fe08d6c78f..cc919ae46571 100644 --- a/drivers/video/vfb.c +++ b/drivers/video/vfb.c | |||
@@ -543,6 +543,7 @@ static int vfb_remove(struct platform_device *dev) | |||
543 | if (info) { | 543 | if (info) { |
544 | unregister_framebuffer(info); | 544 | unregister_framebuffer(info); |
545 | rvfree(videomemory, videomemorysize); | 545 | rvfree(videomemory, videomemorysize); |
546 | fb_dealloc_cmap(&info->cmap); | ||
546 | framebuffer_release(info); | 547 | framebuffer_release(info); |
547 | } | 548 | } |
548 | return 0; | 549 | return 0; |