1
0
Fork 0

staging: rtl8723au: process_80211d(): Fix order of advancing array pos

Fix smatch warning from advancing array index before reading out the
value of the array.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Jes Sorensen 2014-04-26 18:54:52 +02:00 committed by Greg Kroah-Hartman
parent 79a76349d5
commit 17979959ba
1 changed files with 2 additions and 2 deletions

View File

@ -4867,9 +4867,9 @@ static void process_80211d(struct rtw_adapter *padapter,
if (!ie || ie[1] < IEEE80211_COUNTRY_IE_MIN_LEN)
return;
ie += 2;
p = ie;
p = ie + 2;
ie += ie[1];
ie += 2;
memcpy(country, p, 3);
country[3] = '\0';