You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside ept.c, when counting the number of instruction bytes at the start of the hooked function, the instruction pointer is not incremented - this results in counting the length of the same instruction over and over again.
Hey there, great find! Looks like it was overlooked but generally didn't have any issues because only one instruction's space was necessary for the example.
Could you submit a pull request so I can merge it into the main branch?
Inside ept.c, when counting the number of instruction bytes at the start of the hooked function, the instruction pointer is not incremented - this results in counting the length of the same instruction over and over again.
SizeOfHookedInstructions += LDE(TargetFunction, 64))
should be changed to something like:
SizeOfHookedInstructions += LDE(TargetFunction + SizeOfHookedInstructions, 64))
The text was updated successfully, but these errors were encountered: