scan: don't print notification if sc is not found

If this scan is not for any IWD wdev's don't print
This commit is contained in:
James Prestwood 2022-01-12 10:08:41 -08:00 committed by Denis Kenzior
parent ceb6da81b3
commit 34348fcb42
1 changed files with 2 additions and 2 deletions

View File

@ -1811,8 +1811,6 @@ static void scan_notify(struct l_genl_msg *msg, void *user_data)
cmd = l_genl_msg_get_command(msg);
l_debug("Scan notification %s(%u)", nl80211cmd_to_string(cmd), cmd);
if (nl80211_parse_attrs(msg, NL80211_ATTR_WDEV, &wdev_id,
NL80211_ATTR_WIPHY, &wiphy_id,
NL80211_ATTR_UNSPEC) < 0)
@ -1822,6 +1820,8 @@ static void scan_notify(struct l_genl_msg *msg, void *user_data)
if (!sc)
return;
l_debug("Scan notification %s(%u)", nl80211cmd_to_string(cmd), cmd);
if (!l_genl_attr_init(&attr, msg))
return;