diff options
| author | Andres Salomon <dilinger@queued.net> | 2009-03-31 18:25:28 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-01 11:59:31 -0400 |
| commit | e98d9b407c248ba1419bed0823488d3cc71a2c31 (patch) | |
| tree | 488c59595d7eca29b1f745f09a24f698b5f5c299 | |
| parent | 327fc8752a3c08fc7dc7d382883e65aad2f03bde (diff) | |
68328fb: fix cmap memory leaks
- fix cmap leak in removal path
- fix cmap leak when register_framebuffer fails
- check return value of fb_alloc_cmap
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>
| -rw-r--r-- | drivers/video/68328fb.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/68328fb.c b/drivers/video/68328fb.c index 7f907fb23b8a..0b17824b0eb5 100644 --- a/drivers/video/68328fb.c +++ b/drivers/video/68328fb.c | |||
| @@ -471,9 +471,11 @@ int __init mc68x328fb_init(void) | |||
| 471 | fb_info.pseudo_palette = &mc68x328fb_pseudo_palette; | 471 | fb_info.pseudo_palette = &mc68x328fb_pseudo_palette; |
| 472 | fb_info.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN; | 472 | fb_info.flags = FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN; |
| 473 | 473 | ||
| 474 | fb_alloc_cmap(&fb_info.cmap, 256, 0); | 474 | if (fb_alloc_cmap(&fb_info.cmap, 256, 0)) |
| 475 | return -ENOMEM; | ||
| 475 | 476 | ||
| 476 | if (register_framebuffer(&fb_info) < 0) { | 477 | if (register_framebuffer(&fb_info) < 0) { |
| 478 | fb_dealloc_cmap(&fb_info.cmap); | ||
| 477 | return -EINVAL; | 479 | return -EINVAL; |
| 478 | } | 480 | } |
| 479 | 481 | ||
| @@ -494,6 +496,7 @@ module_init(mc68x328fb_init); | |||
| 494 | static void __exit mc68x328fb_cleanup(void) | 496 | static void __exit mc68x328fb_cleanup(void) |
| 495 | { | 497 | { |
| 496 | unregister_framebuffer(&fb_info); | 498 | unregister_framebuffer(&fb_info); |
| 499 | fb_dealloc_cmap(&fb_info.cmap); | ||
| 497 | } | 500 | } |
| 498 | 501 | ||
| 499 | module_exit(mc68x328fb_cleanup); | 502 | module_exit(mc68x328fb_cleanup); |
