aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath5k/phy.c
diff options
context:
space:
mode:
authorBob Copeland <me@bobcopeland.com>2010-04-07 23:55:59 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-04-08 15:24:16 -0400
commit4f59fce9e099fb6ba3c8361e5094163a3efce5be (patch)
tree72da69ffda22e548bc608d5a5bcd87b8220497d4 /drivers/net/wireless/ath/ath5k/phy.c
parenta05988bbbef5ac2391fe696646f0b80708f33f2e (diff)
ath5k: add bounds check to pdadc table
We check the bounds on pdadc once when correcting for negative curves but not when we later copy values from from the pdadc_tmp array, leading to a potential overrun. Although we shouldn't hit this case in practice, let's be consistent. Reported-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Bob Copeland <me@bobcopeland.com> Acked-by: Bruno Randolf <br1@einfach.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/phy.c')
-rw-r--r--drivers/net/wireless/ath/ath5k/phy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath5k/phy.c b/drivers/net/wireless/ath/ath5k/phy.c
index fcfc32d4da20..4a49dbb17352 100644
--- a/drivers/net/wireless/ath/ath5k/phy.c
+++ b/drivers/net/wireless/ath/ath5k/phy.c
@@ -2557,7 +2557,7 @@ ath5k_combine_pwr_to_pdadc_curves(struct ath5k_hw *ah,
2557 max_idx = (pdadc_n < table_size) ? pdadc_n : table_size; 2557 max_idx = (pdadc_n < table_size) ? pdadc_n : table_size;
2558 2558
2559 /* Fill pdadc_out table */ 2559 /* Fill pdadc_out table */
2560 while (pdadc_0 < max_idx) 2560 while (pdadc_0 < max_idx && pdadc_i < 128)
2561 pdadc_out[pdadc_i++] = pdadc_tmp[pdadc_0++]; 2561 pdadc_out[pdadc_i++] = pdadc_tmp[pdadc_0++];
2562 2562
2563 /* Need to extrapolate above this pdgain? */ 2563 /* Need to extrapolate above this pdgain? */