浏览代码

qcacld-3.0: Add null check for mlo sta context

Currently mlo sta context is accessed without null
check in mlo api's.

Add null check for mlo sta context in mlo_check_if_all_links_up
and mlo_check_if_all_vdev_up api's.

CRs-Fixed: 3601823
Change-Id: Iea3f1daf1d9aef40efdff21a02e8a3c23494bfad
Amruta Kulkarni 1 年之前
父节点
当前提交
dd4b6d0ea6
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      components/umac/mlme/mlo_mgr/src/wlan_mlo_mgr_roam.c

+ 9 - 0
components/umac/mlme/mlo_mgr/src/wlan_mlo_mgr_roam.c

@@ -808,6 +808,11 @@ mlo_check_if_all_links_up(struct wlan_objmgr_vdev *vdev)
 	}
 
 	mlo_dev_ctx = vdev->mlo_dev_ctx;
+	if (!mlo_dev_ctx->sta_ctx) {
+		mlo_err("mlo sta ctx is null");
+		return false;
+	}
+
 	sta_ctx = mlo_dev_ctx->sta_ctx;
 	for (i = 0; i < WLAN_UMAC_MLO_MAX_VDEVS; i++) {
 		if (!mlo_dev_ctx->wlan_vdev_list[i])
@@ -848,6 +853,10 @@ mlo_check_if_all_vdev_up(struct wlan_objmgr_vdev *vdev)
 	}
 
 	mlo_dev_ctx = vdev->mlo_dev_ctx;
+	if (!mlo_dev_ctx->sta_ctx) {
+		mlo_err("mlo sta ctx is null");
+		return false;
+	}
 	sta_ctx = mlo_dev_ctx->sta_ctx;
 	for (i = 0; i < WLAN_UMAC_MLO_MAX_VDEVS; i++) {
 		if (!mlo_dev_ctx->wlan_vdev_list[i])