Skip to content

Commit df2d85a

Browse files
committed
Collect missed memory
1 parent 49e10b6 commit df2d85a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/eval.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,9 @@ namespace Sass {
13691369
else if (auto builtin = callable->isaBuiltInCallable()) {
13701370

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

13741376
}
13751377

0 commit comments

Comments
 (0)