We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295adaf commit a4058dcCopy full SHA for a4058dc
net/mac80211/mlme.c
@@ -10273,8 +10273,10 @@ int ieee80211_mgd_assoc_ml_reconf(struct ieee80211_sub_if_data *sdata,
10273
* on which the request was received.
10274
*/
10275
skb = ieee80211_build_ml_reconf_req(sdata, data, rem_links);
10276
- if (!skb)
10277
- return -ENOMEM;
+ if (!skb) {
+ err = -ENOMEM;
10278
+ goto err_free;
10279
+ }
10280
10281
if (rem_links) {
10282
u16 new_dormant_links = sdata->vif.dormant_links & ~rem_links;
0 commit comments