Commit df455ed3 authored by Navid Emamdoost's avatar Navid Emamdoost Committed by Greg Kroah-Hartman

Staging: fbtft: fix memory leak in fbtft_framebuffer_alloc

commit 5bdea606 upstream.

In fbtft_framebuffer_alloc the error handling path should take care of
releasing frame buffer after it is allocated via framebuffer_alloc, too.
Therefore, in two failure cases the goto destination is changed to
address this issue.

Fixes: c296d5f9 ("staging: fbtft: core support")
Signed-off-by: default avatarNavid Emamdoost <navid.emamdoost@gmail.com>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@gmail.com>
Cc: stable <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20190930030949.28615-1-navid.emamdoost@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d58d477c
...@@ -819,7 +819,7 @@ struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display, ...@@ -819,7 +819,7 @@ struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display,
if (par->gamma.curves && gamma) { if (par->gamma.curves && gamma) {
if (fbtft_gamma_parse_str(par, par->gamma.curves, gamma, if (fbtft_gamma_parse_str(par, par->gamma.curves, gamma,
strlen(gamma))) strlen(gamma)))
goto alloc_fail; goto release_framebuf;
} }
/* Transmit buffer */ /* Transmit buffer */
...@@ -836,7 +836,7 @@ struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display, ...@@ -836,7 +836,7 @@ struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display,
if (txbuflen > 0) { if (txbuflen > 0) {
txbuf = devm_kzalloc(par->info->device, txbuflen, GFP_KERNEL); txbuf = devm_kzalloc(par->info->device, txbuflen, GFP_KERNEL);
if (!txbuf) if (!txbuf)
goto alloc_fail; goto release_framebuf;
par->txbuf.buf = txbuf; par->txbuf.buf = txbuf;
par->txbuf.len = txbuflen; par->txbuf.len = txbuflen;
} }
...@@ -872,6 +872,9 @@ struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display, ...@@ -872,6 +872,9 @@ struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display,
return info; return info;
release_framebuf:
framebuffer_release(info);
alloc_fail: alloc_fail:
vfree(vmem); vfree(vmem);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment