Explorar el Código

Merge "qcacmn: user_id check while accessing ppdu_info->rx_msdu_info"

Linux Build Service Account hace 5 años
padre
commit
438e248a07
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. 4 2
      hal/wifi3.0/hal_generic_api.h

+ 4 - 2
hal/wifi3.0/hal_generic_api.h

@@ -1281,8 +1281,10 @@ hal_rx_status_get_tlv_info_generic(void *rx_tlv_hdr, void *ppduinfo,
 				   FCS_ERR);
 		return HAL_TLV_STATUS_MPDU_END;
 	case WIFIRX_MSDU_END_E:
-		ppdu_info->rx_msdu_info[user_id].cce_metadata =
-			HAL_RX_MSDU_END_CCE_METADATA_GET(rx_tlv);
+		if (user_id < HAL_MAX_UL_MU_USERS) {
+			ppdu_info->rx_msdu_info[user_id].cce_metadata =
+				HAL_RX_MSDU_END_CCE_METADATA_GET(rx_tlv);
+		}
 		return HAL_TLV_STATUS_MSDU_END;
 	case 0:
 		return HAL_TLV_STATUS_PPDU_DONE;