Skip to content

Commit

Permalink
Fix regression in x64dbg plugin caused by 9ad0839. Fixes #115
Browse files Browse the repository at this point in the history
  • Loading branch information
Mattiwatti committed Dec 15, 2020
1 parent d2a719c commit 37ff0b3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ScyllaHideX64DBGPlugin/ScyllaHideX64DBGPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,13 @@ static void cbDebugloop(CBTYPE cbType, void* callbackInfo)
{
case STATUS_BREAKPOINT:
{
if (!bHooked)
{
ReadNtApiInformation(&g_hdd);

bHooked = true;
startInjection(ProcessId, &g_hdd, g_scyllaHideDllPath.c_str(), true);
}
break;
}

Expand Down

0 comments on commit 37ff0b3

Please sign in to comment.