mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-26 01:15:16 +00:00
send action buffer as pointer in script engine
This commit is contained in:
parent
b982a19e74
commit
1eb6334288
5 changed files with 146 additions and 138 deletions
|
|
@ -331,9 +331,14 @@ ScriptEngineEvalWrapper(PGUEST_REGS GuestRegs,
|
|||
VariablesList.LocalVariablesList = g_ScriptLocalVariables;
|
||||
|
||||
//
|
||||
// If has error, show error message and abort.
|
||||
// If has error, show error message and abort
|
||||
//
|
||||
if (ScriptEngineExecute(GuestRegs, ActionBuffer, &VariablesList, CodeBuffer, &i, &ErrorSymbol) == TRUE)
|
||||
if (ScriptEngineExecute(GuestRegs,
|
||||
&ActionBuffer,
|
||||
&VariablesList,
|
||||
CodeBuffer,
|
||||
&i,
|
||||
&ErrorSymbol) == TRUE)
|
||||
{
|
||||
CHAR NameOfOperator[MAX_FUNCTION_NAME_LENGTH] = {0};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue