public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized value
@ 2011-08-22 14:00 Julia Lawall
  2011-08-22 14:11 ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized Pierre Louis Aublin
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Julia Lawall @ 2011-08-22 14:00 UTC (permalink / raw)
  To: Bing Zhao
  Cc: kernel-janitors, John W. Linville, linux-wireless, netdev,
	linux-kernel

From: Julia Lawall <julia@diku.dk>

Test the just-initialized value rather than some other one.

The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r@
identifier x,y,f!={PTR_ERR,ERR_PTR,ERR_CAST};
statement S;
@@

x = f(...);
(
if (\(x = NULL\|IS_ERR(x)\)) S
|
*if (\(y = NULL\|IS_ERR(y)\))
 { ... when != x
   return ...; }
)
// </smpl>

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

---
 drivers/net/wireless/mwifiex/scan.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/mwifiex/scan.c b/drivers/net/wireless/mwifiex/scan.c
index b28241c..d3111c9 100644
--- a/drivers/net/wireless/mwifiex/scan.c
+++ b/drivers/net/wireless/mwifiex/scan.c
@@ -1480,7 +1480,7 @@ mwifiex_update_curr_bss_params(struct mwifiex_private *priv,
 		return -ENOMEM;
 	}
 	beacon_ie = kzalloc(ie_len, GFP_KERNEL);
-	if (!bss_desc) {
+	if (!beacon_ie) {
 		dev_err(priv->adapter->dev, " failed to alloc bss_desc\n");
 		return -ENOMEM;
 	}


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

end of thread, other threads:[~2012-01-09 18:49 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-22 14:00 [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized value Julia Lawall
2011-08-22 14:11 ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized Pierre Louis Aublin
2011-08-22 14:12   ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the Julia Lawall
2011-08-22 14:16   ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized Julia Lawall
2011-08-22 19:02     ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the Bing Zhao
2011-08-22 19:09       ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized walter harms
2011-08-22 19:29         ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the Bing Zhao
2011-08-22 15:19 ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the just-initialized Larry Finger
2011-08-22 15:28   ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: test the Julia Lawall
2012-01-09  9:40 ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: convert GFP_KERNEL to GFP_ATOMIC Julia Lawall
2012-01-09 18:49   ` [PATCH 4/4] drivers/net/wireless/mwifiex/scan.c: convert Bing Zhao

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