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

Commit 432c544f authored by Utkarsh Bhatnagar's avatar Utkarsh Bhatnagar Committed by Madan Koyyalamudi
Browse files

qcacld-3.0: Donot access invalid wiphy band

In wlan_hdd_get_wiphy_channel(), Donot access
60 Ghz which are not part of wiphy.

Change-Id: Ie8249bdcc7c4fb66744a9b16f2c194e9ab60dd1b
CRs-Fixed: 2984046
parent 2d641899
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -4878,6 +4878,10 @@ static struct ieee80211_channel *wlan_hdd_get_wiphy_channel(
	struct ieee80211_channel *wiphy_channel = NULL;

	for (band_num = 0; band_num < HDD_NUM_NL80211_BANDS; band_num++) {
		if (!wiphy->bands[band_num]) {
			hdd_debug("Band %d not part of wiphy", band_num);
			continue;
		}
		for (channel_num = 0; channel_num <
				wiphy->bands[band_num]->n_channels;
				channel_num++) {