mirror of
https://gitee.com/openharmony/kernel_linux
synced 2025-02-05 01:40:58 +00:00
[PATCH] drivers/video/radeonfb.c: fix an array overflow
This patch fixes an array overflow found by the Coverity checker. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
6e3e98d1dc
commit
390725c36d
@ -2107,7 +2107,7 @@ static void radeon_write_mode (struct radeonfb_info *rinfo,
|
||||
|
||||
|
||||
if (rinfo->arch == RADEON_M6) {
|
||||
for (i=0; i<8; i++)
|
||||
for (i=0; i<7; i++)
|
||||
OUTREG(common_regs_m6[i].reg, common_regs_m6[i].val);
|
||||
} else {
|
||||
for (i=0; i<9; i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user