From ed35dd37a2f68f18a8a9678f60a36bce87fab2d4 Mon Sep 17 00:00:00 2001 From: "mr.exodia" Date: Wed, 23 Oct 2013 21:49:11 +0200 Subject: [PATCH] fixed a little bug in IsJumpGoingToExecute --- TitanEngine/TitanEngine.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/TitanEngine/TitanEngine.cpp b/TitanEngine/TitanEngine.cpp index 2026d0b..f5d06b2 100644 --- a/TitanEngine/TitanEngine.cpp +++ b/TitanEngine/TitanEngine.cpp @@ -15103,7 +15103,7 @@ __declspec(dllexport) bool TITCALL IsJumpGoingToExecuteEx(HANDLE hProcess, HANDL bool bDF = false; bool bOF = false; - if(hProcess != NULL && hThread != NULL) + if(hProcess != NULL && (hThread || RegFlags)) { if(InstructionAddress == NULL) { @@ -16838,7 +16838,6 @@ __declspec(dllexport) void TITCALL DebugLoop() } } } - //loadDLL callback if(DBGCustomHandler->chLoadDll != NULL) {