浏览代码

cfg80211: off by one in nl80211_trigger_scan()

The test is off by one so we'd read past the end of the
wiphy->bands[] array on the next line.

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Dan Carpenter 14 年之前
父节点
当前提交
84404623da
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/wireless/nl80211.c

+ 1 - 1
net/wireless/nl80211.c

@@ -3464,7 +3464,7 @@ static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
 				    tmp) {
 				    tmp) {
 			enum ieee80211_band band = nla_type(attr);
 			enum ieee80211_band band = nla_type(attr);
 
 
-			if (band < 0 || band > IEEE80211_NUM_BANDS) {
+			if (band < 0 || band >= IEEE80211_NUM_BANDS) {
 				err = -EINVAL;
 				err = -EINVAL;
 				goto out_free;
 				goto out_free;
 			}
 			}