|
@@ -3339,6 +3339,7 @@ sir_convert_reassoc_req_frame2_struct(struct mac_context *mac,
|
|
|
status, nFrame);
|
|
|
QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_ERROR,
|
|
|
pFrame, nFrame);
|
|
|
+ qdf_mem_free(ar);
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
} else if (DOT11F_WARNED(status)) {
|
|
|
pe_debug("There were warnings while unpacking a Re-association Request (0x%08x, %d bytes):",
|
|
@@ -3435,11 +3436,13 @@ sir_convert_reassoc_req_frame2_struct(struct mac_context *mac,
|
|
|
|
|
|
if (!pAssocReq->ssidPresent) {
|
|
|
pe_debug("Received Assoc without SSID IE");
|
|
|
+ qdf_mem_free(ar);
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
if (!pAssocReq->suppRatesPresent && !pAssocReq->extendedRatesPresent) {
|
|
|
pe_debug("Received Assoc without supp rate IE");
|
|
|
+ qdf_mem_free(ar);
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
/* Why no call to 'updateAssocReqFromPropCapability' here, like */
|