Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Fix dynamic call screwing up values #511

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/libs/core/src/compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4456,6 +4456,7 @@ bool COMPILER::BC_Execute(uint32_t function_code, DATA *&pVReturnResult, const c
pVResult = nullptr;
if (!BC_CallFunction(func_code, ip, pVResult))
return false;
ExpressionResult.ClearType();
if (pVResult)
{
ExpressionResult.Set(1);
Expand Down
Loading