Browse Source

Merge "qcacmn: Fix array subscript out of bound issue"

Linux Build Service Account 5 years ago
parent
commit
83dd46c17f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wlan_cfg/wlan_cfg.c

+ 1 - 1
wlan_cfg/wlan_cfg.c

@@ -713,7 +713,7 @@ int wlan_cfg_get_target_pdev_id(struct wlan_cfg_dp_soc_ctxt *cfg,
 {
 {
 	int idx;
 	int idx;
 
 
-	for (idx = 0; idx < MAX_NUM_LMAC_HW; idx++) {
+	for (idx = 0; idx < MAX_PDEV_CNT; idx++) {
 		if (cfg->hw_macid[idx] == hw_macid)
 		if (cfg->hw_macid[idx] == hw_macid)
 			return (idx + 1);
 			return (idx + 1);
 	}
 	}