|
@@ -10028,7 +10028,7 @@ csr_roam_chk_lnk_assoc_ind_upper_layer(
|
|
|
&session_id);
|
|
|
if (!QDF_IS_STATUS_SUCCESS(status)) {
|
|
|
sme_debug("Couldn't find session_id for given BSSID");
|
|
|
- return;
|
|
|
+ goto free_mem;
|
|
|
}
|
|
|
csr_send_assoc_ind_to_upper_layer_cnf_msg(
|
|
|
mac_ctx, assoc_ind, status, session_id);
|
|
@@ -10039,6 +10039,7 @@ csr_roam_chk_lnk_assoc_ind_upper_layer(
|
|
|
*in the csr_send_assoc_ind_to_upper_layer_cnf_msg and
|
|
|
*then free the memroy here.
|
|
|
*/
|
|
|
+free_mem:
|
|
|
if (assoc_ind->assocReqLength != 0 && assoc_ind->assocReqPtr)
|
|
|
qdf_mem_free(assoc_ind->assocReqPtr);
|
|
|
}
|