mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
refactor: free netlink message
This commit is contained in:
parent
399f61df98
commit
1647e31b48
@ -490,14 +490,14 @@ auto waybar::modules::Network::getInfo() -> void
|
||||
getInterfaceAddress();
|
||||
struct nl_msg* nl_msg = nlmsg_alloc();
|
||||
if (nl_msg == nullptr) {
|
||||
nlmsg_free(nl_msg);
|
||||
return;
|
||||
}
|
||||
if (genlmsg_put(nl_msg, NL_AUTO_PORT, NL_AUTO_SEQ, nl80211_id_, 0, NLM_F_DUMP,
|
||||
NL80211_CMD_GET_SCAN, 0) == nullptr
|
||||
|| nla_put_u32(nl_msg, NL80211_ATTR_IFINDEX, ifid_) < 0) {
|
||||
nlmsg_free(nl_msg);
|
||||
return;
|
||||
goto msg_free;
|
||||
}
|
||||
nl_send_auto(sk_, nl_msg);
|
||||
msg_free:
|
||||
nlmsg_free(nl_msg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user