Skip to content

Commit 098862d

Browse files
committed
Review
1 parent a65e668 commit 098862d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Zend/zend_ast.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1507,7 +1507,8 @@ ZEND_API void ZEND_FASTCALL zend_ast_destroy(zend_ast *ast)
15071507
} else if (EXPECTED(ast->kind == ZEND_AST_CALLABLE_CONVERT)) {
15081508
zend_ast_fcc *fcc_ast = (zend_ast_fcc*) ast;
15091509

1510-
zend_ast_destroy(fcc_ast->args);
1510+
ast = fcc_ast->args;
1511+
goto tail_call;
15111512
}
15121513
}
15131514

0 commit comments

Comments
 (0)