mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
ALSA: atmel: Fix possible array overflow
The static checker found a possible array overflow in atmel/abdac.c: static checker warning: "sound/atmel/abdac.c:373 set_sample_rates() error: buffer overflow 'dac->rates' 6 <= 6" This patch papers over the buggy point, by ensuring that dac->rates[] update not overflowing the actual array size. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
88d071fc9a
commit
e4de211cd3
@ -357,7 +357,8 @@ static int set_sample_rates(struct atmel_abdac *dac)
|
||||
if (new_rate < 0)
|
||||
break;
|
||||
/* make sure we are below the ABDAC clock */
|
||||
if (new_rate <= clk_get_rate(dac->pclk)) {
|
||||
if (index < MAX_NUM_RATES &&
|
||||
new_rate <= clk_get_rate(dac->pclk)) {
|
||||
dac->rates[index] = new_rate / 256;
|
||||
index++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user