target-i386: cpu: Fix potential buffer overrun in get_register_name_32()
Spotted by Coverity, x86_reg_info_32[] is CPU_NB_REGS32 elements long, so accessing x86_reg_info_32[CPU_NB_REGS32] will be one element off array. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: liguang <lig.fnst@cn.fujitsu.com> Reviewed by: Jesse Larrew <jlarrew@linux.vnet.ibm.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
6b11322e0f
commit
31ccdde298
@ -221,7 +221,7 @@ X86RegisterInfo32 x86_reg_info_32[CPU_NB_REGS32] = {
|
||||
|
||||
const char *get_register_name_32(unsigned int reg)
|
||||
{
|
||||
if (reg > CPU_NB_REGS32) {
|
||||
if (reg >= CPU_NB_REGS32) {
|
||||
return NULL;
|
||||
}
|
||||
return x86_reg_info_32[reg].name;
|
||||
|
Loading…
Reference in New Issue
Block a user