We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7118280 commit 593a349Copy full SHA for 593a349
1 file changed
sources/x86Detour.cpp
@@ -28,7 +28,10 @@ uint8_t getJmpSize() {
28
void x86Detour::fixSpecialCases(insts_t& prologue) {
29
for (auto& instruction: prologue) {
30
if (const auto routine = getRoutineReturningSP(instruction)) {
31
- Log::log("Fixing special case #215:\n" + instsToStr(std::vector{instruction}), ErrorLevel::INFO);
+ Log::log(
32
+ "Fixing special case [call to routine reading esp ]:\n" + instsToStr(std::vector{instruction}),
33
+ ErrorLevel::INFO
34
+ );
35
36
// Fix for https://github.com/stevemk14ebr/PolyHook_2_0/issues/215
37
// Example routine(eax could be any register):
0 commit comments