|
@@ -2168,6 +2168,7 @@ void lim_process_sta_add_bss_rsp_pre_assoc(struct mac_context *mac_ctx,
|
|
|
session_entry->limSmeState));
|
|
|
#ifdef WLAN_FEATURE_11BE_MLO
|
|
|
if (wlan_vdev_mlme_is_mlo_link_vdev(session_entry->vdev)) {
|
|
|
+ qdf_mem_free(pMlmAuthReq);
|
|
|
pe_err("vdev is an MLO link, skip Auth");
|
|
|
return;
|
|
|
}
|
|
@@ -2761,8 +2762,9 @@ static void lim_process_switch_channel_join_req(
|
|
|
pe_debug("MLO:assoc rsp len + hdr %d ", assoc_rsp.len);
|
|
|
|
|
|
link_assoc_rsp.ptr = qdf_mem_malloc(assoc_rsp.len);
|
|
|
- if (link_assoc_rsp.ptr) {
|
|
|
- link_assoc_rsp.len = assoc_rsp.len;
|
|
|
+ if (!link_assoc_rsp.ptr)
|
|
|
+ return;
|
|
|
+ link_assoc_rsp.len = assoc_rsp.len;
|
|
|
session_entry->limMlmState = eLIM_MLM_WT_ASSOC_RSP_STATE;
|
|
|
pe_debug("MLO: Generate and process assoc rsp for link vdev");
|
|
|
|
|
@@ -2775,7 +2777,7 @@ static void lim_process_switch_channel_join_req(
|
|
|
link_assoc_rsp.len,
|
|
|
LIM_ASSOC,
|
|
|
session_entry);
|
|
|
- }
|
|
|
+ qdf_mem_free(link_assoc_rsp.ptr);
|
|
|
}
|
|
|
return;
|
|
|
}
|