mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-02 02:35:24 +02:00
WebSocketMemoryBreakpointParams::Parse() (used by add/update) checks for address + size wrapping around before computing the end address, but memory.breakpoint.remove computed it inline without that check. Apply the same check for consistency - a crafted size could otherwise wrap the computed end below address, causing RemoveMemCheck to operate on an unintended range.