mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-29 13:00:35 +00:00
nl80211: check nla_nest_start() return value
Coverity pointed out that we might dereference NULL later if nla_nest_start() returns a failure. This isn't really true since we'd bomb out before, but we should check the return value directly, so do that. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
9fe271af7d
commit
7fa322c878
@ -11094,6 +11094,8 @@ void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
|
|||||||
struct nlattr *reasons;
|
struct nlattr *reasons;
|
||||||
|
|
||||||
reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
|
reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
|
||||||
|
if (!reasons)
|
||||||
|
goto free_msg;
|
||||||
|
|
||||||
if (wakeup->disconnect &&
|
if (wakeup->disconnect &&
|
||||||
nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
|
nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
|
||||||
|
Loading…
Reference in New Issue
Block a user