netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 5/9] drivers/net/wireless: correct error-handling code
@ 2009-07-28 15:54 Julia Lawall
       [not found] ` <Pine.LNX.4.64.0907281753540.28189-QfmoRoYWmW9knbxzx/v8hQ@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Julia Lawall @ 2009-07-28 15:54 UTC (permalink / raw)
  To: netdev, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

iwm_wdev_alloc returns an ERR_PTR value in an error case instead of NULL.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@match exists@
expression x, E;
statement S1, S2;
@@

x = iwm_wdev_alloc(...)
... when != x = E
(
*  if (x == NULL || ...) S1 else S2
|
*  if (x == NULL && ...) S1 else S2
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>

---
 drivers/net/wireless/iwmc3200wifi/netdev.c     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/iwmc3200wifi/netdev.c b/drivers/net/wireless/iwmc3200wifi/netdev.c
index bb71f8a..e1c6693 100644
--- a/drivers/net/wireless/iwmc3200wifi/netdev.c
+++ b/drivers/net/wireless/iwmc3200wifi/netdev.c
@@ -99,7 +99,7 @@ void *iwm_if_alloc(int sizeof_bus, struct device *dev,
 	int ret = 0;
 
 	wdev = iwm_wdev_alloc(sizeof_bus, dev);
-	if (!wdev) {
+	if (IS_ERR(wdev)) {
 		dev_err(dev, "no memory for wireless device instance\n");
 		return ERR_PTR(-ENOMEM);
 	}

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

end of thread, other threads:[~2009-08-11 14:49 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-28 15:54 [PATCH 5/9] drivers/net/wireless: correct error-handling code Julia Lawall
     [not found] ` <Pine.LNX.4.64.0907281753540.28189-QfmoRoYWmW9knbxzx/v8hQ@public.gmane.org>
2009-07-28 17:30   ` David Miller
2009-07-28 17:52     ` John W. Linville
2009-07-28 18:06     ` [PATCH] MAINTAINERS: Add networking wireless drivers section Joe Perches
     [not found]       ` <1248804397.18284.5.camel-AkRN8/LKpobuYGix6ZUp1Q@public.gmane.org>
2009-07-28 18:15         ` Randy Dunlap
2009-07-28 18:27           ` Joe Perches
2009-07-28 18:34             ` David Miller
2009-07-28 18:33       ` David Miller
2009-07-28 18:48         ` Joe Perches
2009-08-11 13:55           ` Jiri Kosina
2009-08-11 14:49             ` David Miller
2009-07-28 21:33         ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).