mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
Debugger: Fix infinite loop in symbol storage (#1134)
This commit is contained in:
parent
4f3d4624f5
commit
5230fcab37
1 changed files with 7 additions and 2 deletions
|
@ -45,12 +45,17 @@ public:
|
||||||
|
|
||||||
static void ClearRange(MPTR address, uint32 length)
|
static void ClearRange(MPTR address, uint32 length)
|
||||||
{
|
{
|
||||||
|
if (length == 0)
|
||||||
|
return;
|
||||||
s_lock.lock();
|
s_lock.lock();
|
||||||
while (length > 0)
|
for (;;)
|
||||||
{
|
{
|
||||||
auto itr = s_typeStorage.find(address);
|
auto itr = s_typeStorage.find(address);
|
||||||
if (itr != s_typeStorage.end())
|
if (itr != s_typeStorage.end())
|
||||||
s_typeStorage.erase(itr);
|
s_typeStorage.erase(itr);
|
||||||
|
|
||||||
|
if (length <= 4)
|
||||||
|
break;
|
||||||
address += 4;
|
address += 4;
|
||||||
length -= 4;
|
length -= 4;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue