diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-23 12:51:28 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-23 21:25:35 -0400 |
commit | 13d8fd2d15fdd492078bedb9fde87c901a4e4df0 (patch) | |
tree | a2595be4acebc17d98baae7f484c1907076abd42 /net/mac80211 | |
parent | 1ebebea8e844d01c80b93b8ee4d696ee7c0cbc27 (diff) | |
download | linux-stable-13d8fd2d15fdd492078bedb9fde87c901a4e4df0.tar.gz linux-stable-13d8fd2d15fdd492078bedb9fde87c901a4e4df0.tar.bz2 linux-stable-13d8fd2d15fdd492078bedb9fde87c901a4e4df0.zip |
net/mac80211/rx.c: fix off-by-one
This patch fixes an off-by-one in net/mac80211/rx.c introduced by
commit 8318d78a44d49ac1edf2bdec7299de3617c4232e
(cfg80211 API for channels/bitrates, mac80211 and driver conversion)
and spotted by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 52e4554fdde7..02f436a86061 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -2170,7 +2170,7 @@ void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, struct ieee80211_supported_band *sband; if (status->band < 0 || - status->band > IEEE80211_NUM_BANDS) { + status->band >= IEEE80211_NUM_BANDS) { WARN_ON(1); return; } |