Skip to content

Commit

Permalink
nl80211: nl80211hdr_put() doesn't return an ERR_PTR
Browse files Browse the repository at this point in the history
There are a few places which check nl80211hdr_put() for an ERR_PTR
but actually it returns NULL on error and never error values.  In
nl80211_testmode_dump() the return wasn't checked at all so I have
added one.

Signed-off-by: Dan Carpenter <[email protected]>
[some whitespace changes]
Signed-off-by: Johannes Berg <[email protected]>
  • Loading branch information
Dan Carpenter authored and jmberg-intel committed Aug 14, 2013
1 parent ddfe49b commit cb35fba
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions net/wireless/nl80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -2622,8 +2622,8 @@ static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)

hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
NL80211_CMD_NEW_KEY);
if (IS_ERR(hdr))
return PTR_ERR(hdr);
if (!hdr)
return -ENOBUFS;

cookie.msg = msg;
cookie.idx = key_idx;
Expand Down Expand Up @@ -6507,6 +6507,9 @@ static int nl80211_testmode_dump(struct sk_buff *skb,
NL80211_CMD_TESTMODE);
struct nlattr *tmdata;

if (!hdr)
break;

if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
genlmsg_cancel(skb, hdr);
break;
Expand Down Expand Up @@ -6951,9 +6954,8 @@ static int nl80211_remain_on_channel(struct sk_buff *skb,

hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
NL80211_CMD_REMAIN_ON_CHANNEL);

if (IS_ERR(hdr)) {
err = PTR_ERR(hdr);
if (!hdr) {
err = -ENOBUFS;
goto free_msg;
}

Expand Down Expand Up @@ -7251,9 +7253,8 @@ static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)

hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
NL80211_CMD_FRAME);

if (IS_ERR(hdr)) {
err = PTR_ERR(hdr);
if (!hdr) {
err = -ENOBUFS;
goto free_msg;
}
}
Expand Down Expand Up @@ -8132,9 +8133,8 @@ static int nl80211_probe_client(struct sk_buff *skb,

hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
NL80211_CMD_PROBE_CLIENT);

if (IS_ERR(hdr)) {
err = PTR_ERR(hdr);
if (!hdr) {
err = -ENOBUFS;
goto free_msg;
}

Expand Down

0 comments on commit cb35fba

Please sign in to comment.