mirror of https://github.com/xemu-project/xemu.git
pc_sysfw: Fix ISA BIOS init for ridiculously big flash
pc_isa_bios_init() suffers integer overflow for flash larger than INT_MAX. Signed-off-by: Markus Armbruster <armbru@redhat.com> Acked-by: Laszlo Ersek <lersek@redhat.com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Message-id: 1375276272-15988-9-git-send-email-armbru@redhat.com Signed-off-by: Anthony Liguori <anthony@codemonkey.ws>
This commit is contained in:
parent
39228250ce
commit
7f87af39dc
|
@ -53,10 +53,7 @@ static void pc_isa_bios_init(MemoryRegion *rom_memory,
|
|||
flash_size = memory_region_size(flash_mem);
|
||||
|
||||
/* map the last 128KB of the BIOS in ISA space */
|
||||
isa_bios_size = flash_size;
|
||||
if (isa_bios_size > (128 * 1024)) {
|
||||
isa_bios_size = 128 * 1024;
|
||||
}
|
||||
isa_bios_size = MIN(flash_size, 128 * 1024);
|
||||
isa_bios = g_malloc(sizeof(*isa_bios));
|
||||
memory_region_init_ram(isa_bios, NULL, "isa-bios", isa_bios_size);
|
||||
vmstate_register_ram_global(isa_bios);
|
||||
|
|
Loading…
Reference in New Issue