[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1482167458-4734-1-git-send-email-kumar.san1093@gmail.com>
Date: Mon, 19 Dec 2016 22:40:58 +0530
From: Santosh Kumar Singh <kumar.san1093@...il.com>
To: Mauro Carvalho Chehab <mchehab@...nel.org>,
Hans Verkuil <hans.verkuil@...co.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Wolfram Sang <wsa-dev@...g-engineering.com>
Cc: linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
Santosh Kumar Singh <kumar.san1093@...il.com>
Subject: [PATCH] tm6000: Clean up file handle in open() error path.
Fix to avoid possible memory leak and exit file handle
in error paths.
Signed-off-by: Santosh Kumar Singh <kumar.san1093@...il.com>
---
drivers/media/usb/tm6000/tm6000-video.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/media/usb/tm6000/tm6000-video.c b/drivers/media/usb/tm6000/tm6000-video.c
index dee7e7d..b39247a 100644
--- a/drivers/media/usb/tm6000/tm6000-video.c
+++ b/drivers/media/usb/tm6000/tm6000-video.c
@@ -1377,8 +1377,11 @@ static int __tm6000_open(struct file *file)
/* initialize hardware on analog mode */
rc = tm6000_init_analog_mode(dev);
- if (rc < 0)
+ if (rc < 0) {
+ v4l2_fh_exit(&fh->fh);
+ kfree(fh);
return rc;
+ }
dev->mode = TM6000_MODE_ANALOG;
--
1.9.1
Powered by blists - more mailing lists