Merge pull request #111 from HyperDbg/fix-script-engine-bugs

solved boolean expression detection bug
This commit is contained in:
Mohammad Sina Karvandi 2022-01-23 20:47:36 +03:30 committed by GitHub
commit d2f9fc0754
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 618 additions and 610 deletions

View file

@ -340,7 +340,7 @@ ScriptEngineEvalWrapper(PGUEST_REGS GuestRegs,
ShowMessages("%s\n", CodeBuffer->Message);
}
// RemoveSymbolBuffer(CodeBuffer);
//RemoveSymbolBuffer(CodeBuffer);
return;
}
@ -425,7 +425,7 @@ ScriptEngineWrapperTestParser(string Expr)
GuestRegs.r15 = (ULONG64)test;
ScriptEngineEvalWrapper(&GuestRegs, Expr);
free(TestStruct);
//free(TestStruct);
}
/**