diff options
author | Julia Lawall <julia@diku.dk> | 2011-08-22 10:16:14 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-08-24 14:57:17 -0400 |
commit | f750323009b6540cc614304fd784300b49506797 (patch) | |
tree | 9867c5e8482b6592ed45eb3bb63a522da41ced0b /drivers/net/wireless/mwifiex | |
parent | 8b0be90c4d3770b0c31489fc3ae33e5d8ba9edf8 (diff) |
drivers/net/wireless/mwifiex/scan.c: test the just-initialized value
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>
Acked-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex')
-rw-r--r-- | drivers/net/wireless/mwifiex/scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mwifiex/scan.c b/drivers/net/wireless/mwifiex/scan.c index b28241c6e737..37ca2f90ad63 100644 --- a/drivers/net/wireless/mwifiex/scan.c +++ b/drivers/net/wireless/mwifiex/scan.c | |||
@@ -1480,8 +1480,8 @@ mwifiex_update_curr_bss_params(struct mwifiex_private *priv, | |||
1480 | return -ENOMEM; | 1480 | return -ENOMEM; |
1481 | } | 1481 | } |
1482 | beacon_ie = kzalloc(ie_len, GFP_KERNEL); | 1482 | beacon_ie = kzalloc(ie_len, GFP_KERNEL); |
1483 | if (!bss_desc) { | 1483 | if (!beacon_ie) { |
1484 | dev_err(priv->adapter->dev, " failed to alloc bss_desc\n"); | 1484 | dev_err(priv->adapter->dev, " failed to alloc beacon_ie\n"); |
1485 | return -ENOMEM; | 1485 | return -ENOMEM; |
1486 | } | 1486 | } |
1487 | memcpy(beacon_ie, ie_buf, ie_len); | 1487 | memcpy(beacon_ie, ie_buf, ie_len); |