1
0
Fork 0

m68k/mac: Fix out-of-bounds array index in OSS IRQ source initialization

Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
hifive-unleashed-5.1
Finn Thain 2015-03-30 12:22:30 +11:00 committed by Geert Uytterhoeven
parent 79bf442c79
commit b24f670b7f
1 changed files with 1 additions and 2 deletions

View File

@ -47,9 +47,8 @@ void __init oss_init(void)
/* Disable all interrupts. Unlike a VIA it looks like we */
/* do this by setting the source's interrupt level to zero. */
for (i = 0; i <= OSS_NUM_SOURCES; i++) {
for (i = 0; i < OSS_NUM_SOURCES; i++)
oss->irq_level[i] = 0;
}
}
/*