This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: fdp1: Fix a memory leak bug
Author:  Wenwen Wang <wen...@cs.uga.edu>
Date:    Sun Aug 18 02:58:53 2019 -0300

In fdp1_open(), 'ctx' is allocated through kzalloc(). However, it is not
deallocated if v4l2_ctrl_new_std() fails, leading to a memory leak bug. To
fix this issue, free 'ctx' before going to the 'done' label.

Signed-off-by: Wenwen Wang <wen...@cs.uga.edu>
Reviewed-by: Kieran Bingham <kieran.bingham+rene...@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+sams...@kernel.org>

 drivers/media/platform/rcar_fdp1.c | 1 +
 1 file changed, 1 insertion(+)

---

diff --git a/drivers/media/platform/rcar_fdp1.c 
b/drivers/media/platform/rcar_fdp1.c
index c23ec127c277..cb93a13e1777 100644
--- a/drivers/media/platform/rcar_fdp1.c
+++ b/drivers/media/platform/rcar_fdp1.c
@@ -2122,6 +2122,7 @@ static int fdp1_open(struct file *file)
        if (ctx->hdl.error) {
                ret = ctx->hdl.error;
                v4l2_ctrl_handler_free(&ctx->hdl);
+               kfree(ctx);
                goto done;
        }
 

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to