Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99089ab7 authored by Kalle Valo's avatar Kalle Valo
Browse files

ath6kl: add an extra band check to ath6kl_wmi_beginscan_cmd()



Dan reported that smatch found a possible issue in ath6kl_wmi_beginscan_cmd()
where we might access sc->supp_rates beyond the end. It shouldn't happen as
ar->wiphy->bands always have just the first two bands set, but add an extra
check just to be sure.

Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent aa8705fc
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2029,6 +2029,9 @@ int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx,
		if (!sband)
			continue;

		if (WARN_ON(band >= ATH6KL_NUM_BANDS))
			break;

		ratemask = rates[band];
		supp_rates = sc->supp_rates[band].rates;
		num_rates = 0;