Skip to content

Commit

Permalink
Collect missed memory
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed May 22, 2021
1 parent 49e10b6 commit df2d85a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/eval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,9 @@ namespace Sass {
else if (auto builtin = callable->isaBuiltInCallable()) {

// Return value can be ignored, but memory must still be collected
return builtin->execute(*this, include->arguments(), include->pstate());
ValueObj val = builtin->execute(*this, include->arguments(), include->pstate());

return nullptr;

}

Expand Down

0 comments on commit df2d85a

Please sign in to comment.