public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] driver core: Free memory obtained by kzalloc
@ 2018-03-01  5:59 Arvind Yadav
  2018-03-01 10:54 ` Andy Shevchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Arvind Yadav @ 2018-03-01  5:59 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel

Here kfree() is taking NULL. So moving 'dev = NULL' after kfree().

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/base/bus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index ef61833..ccb64a0 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -1170,9 +1170,9 @@ static int subsys_register(struct bus_type *subsys,
 
 err_dev_reg:
 	put_device(dev);
-	dev = NULL;
 err_name:
 	kfree(dev);
+	dev = NULL;
 err_dev:
 	bus_unregister(subsys);
 	return err;
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-03-01 11:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-01  5:59 [PATCH] driver core: Free memory obtained by kzalloc Arvind Yadav
2018-03-01 10:54 ` Andy Shevchenko
2018-03-01 11:24   ` Arvind Yadav

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox