[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20161119182241.9030-1-lambert.quentin@gmail.com>
Date: Sat, 19 Nov 2016 19:22:41 +0100
From: Quentin Lambert <lambert.quentin@...il.com>
To: Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
linux-kernel@...r.kernel.org, kernel-janitors@...r.kernel.org
Cc: Quentin Lambert <lambert.quentin@...il.com>
Subject: [PATCH] stm class: Add a missing call to put_device
Most error branches following the call to class_find_device contain
a call to put_device. This patch add calls to put_device where
they are missing.
This issue was found with Hector.
Signed-off-by: Quentin Lambert <lambert.quentin@...il.com>
---
drivers/hwtracing/stm/core.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
--- a/drivers/hwtracing/stm/core.c
+++ b/drivers/hwtracing/stm/core.c
@@ -368,8 +368,10 @@ static int stm_char_open(struct inode *i
return -ENODEV;
stmf = kzalloc(sizeof(*stmf), GFP_KERNEL);
- if (!stmf)
+ if (!stmf) {
+ put_device(dev);
return -ENOMEM;
+ }
stm_output_init(&stmf->output);
stmf->stm = to_stm_device(dev);
Powered by blists - more mailing lists