Common: Add null checks when adding and removing breakpoints
This commit is contained in:
parent
95d682dfd5
commit
1214161ad9
Source/Core/Common
|
@ -170,7 +170,7 @@ void MemChecks::Add(const TMemCheck& _rMemoryCheck)
|
|||
m_MemChecks.push_back(_rMemoryCheck);
|
||||
// If this is the first one, clear the JIT cache so it can switch to
|
||||
// watchpoint-compatible code.
|
||||
if (!had_any)
|
||||
if (!had_any && jit)
|
||||
jit->ClearCache();
|
||||
}
|
||||
|
||||
|
@ -184,7 +184,7 @@ void MemChecks::Remove(u32 _Address)
|
|||
return;
|
||||
}
|
||||
}
|
||||
if (!HasAny())
|
||||
if (!HasAny() && jit)
|
||||
jit->ClearCache();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue