aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k
diff options
context:
space:
mode:
authorSujith Manoharan <c_manoha@qca.qualcomm.com>2014-01-13 22:52:36 -0500
committerJohn W. Linville <linville@tuxdriver.com>2014-01-16 14:55:41 -0500
commit1908861f2fb072446eabbdc4a01c3bec40ed2f7c (patch)
tree1dfaf11712e231d2e0aa5b73ec9c07f98713e415 /drivers/net/wireless/ath/ath9k
parentbb350711ecb86568468b497d0ecd5c3fd7b45b1b (diff)
ath9k: Fix error reported by smatch
debug_sta.c: ath_debug_rate_stats() error: buffer overflow 'rstats->ht_stats' 24 <= 24 Cc: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k')
-rw-r--r--drivers/net/wireless/ath/ath9k/debug_sta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/debug_sta.c b/drivers/net/wireless/ath/ath9k/debug_sta.c
index d33cc88a5849..d76e6e0120d2 100644
--- a/drivers/net/wireless/ath/ath9k/debug_sta.c
+++ b/drivers/net/wireless/ath/ath9k/debug_sta.c
@@ -128,7 +128,7 @@ void ath_debug_rate_stats(struct ath_softc *sc,
128 rxs = IEEE80211_SKB_RXCB(skb); 128 rxs = IEEE80211_SKB_RXCB(skb);
129 129
130 if (IS_HT_RATE(rs->rs_rate)) { 130 if (IS_HT_RATE(rs->rs_rate)) {
131 if (rxs->rate_idx > ARRAY_SIZE(rstats->ht_stats)) 131 if (rxs->rate_idx >= ARRAY_SIZE(rstats->ht_stats))
132 goto exit; 132 goto exit;
133 133
134 if (rxs->flag & RX_FLAG_40MHZ) 134 if (rxs->flag & RX_FLAG_40MHZ)