1
0
Fork 0

DBG: fixed a bug in DebugUpdateGui (dont update GUI when requested address is invalid)

This commit is contained in:
Mr. eXoDia 2014-07-07 02:19:28 +02:00
parent 95c6c08126
commit b5999a9780
1 changed files with 2 additions and 0 deletions

View File

@ -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)