public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c: add sanity check to i2c_put_adapter
@ 2013-08-01 12:10 Sebastian Hesselbarth
  2013-08-05  9:00 ` Wolfram Sang
  2013-08-07 15:05 ` Wolfram Sang
  0 siblings, 2 replies; 5+ messages in thread
From: Sebastian Hesselbarth @ 2013-08-01 12:10 UTC (permalink / raw)
  To: Sebastian Hesselbarth; +Cc: Wolfram Sang, linux-i2c, linux-kernel

i2c_put_adapter dereferences i2c_adapter pointer passed without check
for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter
called with NULL and behave the same way i2c_release_client does already.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
---
Cc: Wolfram Sang <wsa@the-dreams.de>
Cc: linux-i2c@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
 drivers/i2c/i2c-core.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index f32ca29..d075df6 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -1825,7 +1825,8 @@ EXPORT_SYMBOL(i2c_get_adapter);
 
 void i2c_put_adapter(struct i2c_adapter *adap)
 {
-	module_put(adap->owner);
+	if (adap)
+		module_put(adap->owner);
 }
 EXPORT_SYMBOL(i2c_put_adapter);
 
-- 
1.7.10.4


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

end of thread, other threads:[~2013-08-07 15:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-01 12:10 [PATCH] i2c: add sanity check to i2c_put_adapter Sebastian Hesselbarth
2013-08-05  9:00 ` Wolfram Sang
2013-08-05  9:31   ` Sebastian Hesselbarth
2013-08-05 10:47     ` Wolfram Sang
2013-08-07 15:05 ` Wolfram Sang

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