mirror of https://github.com/PCSX2/pcsx2.git
USB: Fix integer overflow on IOP memory range check
This commit is contained in:
parent
85c3ee823f
commit
f25091414e
|
@ -621,7 +621,7 @@ void USBasync(u32 cycles)
|
|||
int cpu_physical_memory_rw(u32 addr, u8* buf, size_t len, int is_write)
|
||||
{
|
||||
// invalid address, reset and try again
|
||||
if (addr + len >= 0x200000)
|
||||
if ((u64)addr + len >= 0x200000)
|
||||
{
|
||||
if (qemu_ohci)
|
||||
ohci_soft_reset(qemu_ohci);
|
||||
|
|
Loading…
Reference in New Issue