Skip to content

Commit

Permalink
Fix for 32 bit debuggee
Browse files Browse the repository at this point in the history
  • Loading branch information
rexyrexy authored Jan 29, 2025
1 parent 075c8aa commit 5e35a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TitanHide/hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ static NTSTATUS NTAPI HookNtQueryInformationProcess(

__try
{
ProbeForWrite(ProcessInformation, sizeof(HANDLE), sizeof(HANDLE));
ProbeForWrite(ProcessInformation, sizeof(HANDLE), 4);

if (ReturnLength != nullptr)
ProbeForWrite(ReturnLength, sizeof(ULONG), 1);
Expand Down

0 comments on commit 5e35a33

Please sign in to comment.