DBG: fixed a bug in DebugUpdateGui (dont update GUI when requested address is invalid)
This commit is contained in:
parent
95c6c08126
commit
b5999a9780
|
|
@ -180,6 +180,8 @@ bool dbgcmddel(const char* name)
|
|||
|
||||
void DebugUpdateGui(uint disasm_addr, bool stack)
|
||||
{
|
||||
if(!memisvalidreadptr(fdProcessInfo->hProcess, disasm_addr))
|
||||
return;
|
||||
uint cip=GetContextData(UE_CIP);
|
||||
GuiDisasmAt(disasm_addr, cip);
|
||||
if(stack)
|
||||
|
|
|
|||
Loading…
Reference in New Issue