Merge branch 'dev' into fix-warnings

This commit is contained in:
Sinaei 2024-03-02 21:39:40 +09:00
commit 491a6b6fc1
27 changed files with 2329 additions and 868 deletions

View file

@ -358,6 +358,14 @@ ScriptEngineEvalWrapper(PGUEST_REGS GuestRegs,
ACTION_BUFFER ActionBuffer = {0};
SYMBOL ErrorSymbol = {0};
//
//
//
PSYMBOL_BUFFER StackBuffer = GetStackBuffer();
int StackIndx = 0;
int StackBaseIndx = 0;
int StackTempBaseIndx = 0;
if (CodeBuffer->Message == NULL)
{
for (UINT64 i = 0; i < CodeBuffer->Pointer;)
@ -386,6 +394,10 @@ ScriptEngineEvalWrapper(PGUEST_REGS GuestRegs,
&VariablesList,
CodeBuffer,
&i,
StackBuffer,
&StackIndx,
&StackBaseIndx,
&StackTempBaseIndx,
&ErrorSymbol) == TRUE)
{
CHAR NameOfOperator[MAX_FUNCTION_NAME_LENGTH] = {0};