diff options
author | axel lin <axel.lin@gmail.com> | 2011-02-15 09:35:02 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-03-22 16:35:44 +0900 |
commit | 6359691d7efc639bf0f996aa9a694b2653fc6ae6 (patch) | |
tree | a76c58a8cd68eb2a745b5b8928a4659a4fb56af1 /drivers/video | |
parent | 1e93f390e56d82c4fcf684c86a45e1c593dc4b28 (diff) | |
download | op-kernel-dev-6359691d7efc639bf0f996aa9a694b2653fc6ae6.zip op-kernel-dev-6359691d7efc639bf0f996aa9a694b2653fc6ae6.tar.gz |
video: add missing framebuffer_release in error path
This patch fixes a memory leak in the error path.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/cg14.c | 1 | ||||
-rw-r--r-- | drivers/video/cg6.c | 1 | ||||
-rw-r--r-- | drivers/video/tcx.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/cg14.c b/drivers/video/cg14.c index e2c85b0..f188950 100644 --- a/drivers/video/cg14.c +++ b/drivers/video/cg14.c @@ -565,6 +565,7 @@ out_dealloc_cmap: out_unmap_regs: cg14_unmap_regs(op, info, par); + framebuffer_release(info); out_err: return err; diff --git a/drivers/video/cg6.c b/drivers/video/cg6.c index 4ffad90..179e96c 100644 --- a/drivers/video/cg6.c +++ b/drivers/video/cg6.c @@ -821,6 +821,7 @@ out_dealloc_cmap: out_unmap_regs: cg6_unmap_regs(op, info, par); + framebuffer_release(info); out_err: return err; diff --git a/drivers/video/tcx.c b/drivers/video/tcx.c index 855b719..07c66e9 100644 --- a/drivers/video/tcx.c +++ b/drivers/video/tcx.c @@ -480,6 +480,7 @@ out_dealloc_cmap: out_unmap_regs: tcx_unmap_regs(op, info, par); + framebuffer_release(info); out_err: return err; |