public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: core: Fix an error pointer vs NULL bug in devm_iio_device_alloc()
@ 2021-05-15  9:56 Dan Carpenter
  2021-05-16  5:30 ` Alexandru Ardelean
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Carpenter @ 2021-05-15  9:56 UTC (permalink / raw)
  To: Jonathan Cameron, Yicong Yang
  Cc: Lars-Peter Clausen, Nuno Sa, Andy Shevchenko, linux-iio,
	kernel-janitors

The devm_iio_device_alloc() function is supposed to return NULL and not
error pointers.  Returning an error pointer will lead to a crash in the
callers.

Fixes: d240dc25e3b8 ("iio: core: simplify some devm functions")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 drivers/iio/industrialio-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
index bfa20a346f71..75e92bac78f3 100644
--- a/drivers/iio/industrialio-core.c
+++ b/drivers/iio/industrialio-core.c
@@ -1711,7 +1711,7 @@ struct iio_dev *devm_iio_device_alloc(struct device *parent, int sizeof_priv)
 	ret = devm_add_action_or_reset(parent, devm_iio_device_release,
 				       iio_dev);
 	if (ret)
-		return ERR_PTR(ret);
+		return NULL;
 
 	return iio_dev;
 }
-- 
2.30.2


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

end of thread, other threads:[~2021-05-16  9:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-15  9:56 [PATCH] iio: core: Fix an error pointer vs NULL bug in devm_iio_device_alloc() Dan Carpenter
2021-05-16  5:30 ` Alexandru Ardelean
2021-05-16  9:09   ` Jonathan Cameron

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