Previous 199869 Revisions Next

r32903 Thursday 23rd October, 2014 at 09:19:39 UTC by Oliver Stöneberg
fixed signed integer overflow in address_map::uplift_submaps() - by O. Galibert (nw)
[src/emu]addrmap.c

trunk/src/emu/addrmap.c
r241414r241415
540540
541541            // Remap start and end
542542
543            int start_offset = subentry->m_addrstart / entry_bytes;
544            int start_slot = start_offset % slot_count;
543            unsigned int start_offset = subentry->m_addrstart / entry_bytes;
544            unsigned int start_slot = start_offset % slot_count;
545545            subentry->m_addrstart = entry->m_addrstart + (start_offset / slot_count) * databytes;
546546
547547            // Drop the entry if it ends up outside the range
r241414r241415
551551               continue;
552552            }
553553
554            int end_offset = subentry->m_addrend / entry_bytes;
555            int end_slot = end_offset % slot_count;
554            unsigned int end_offset = subentry->m_addrend / entry_bytes;
555            unsigned int end_slot = end_offset % slot_count;
556556            subentry->m_addrend = entry->m_addrstart + (end_offset / slot_count) * databytes + databytes - 1;
557557
558558            // Clip the entry to the end of the range


Previous 199869 Revisions Next


© 1997-2024 The MAME Team