diff --git a/Zend/tests/bug69832.phpt b/Zend/tests/bug69832.phpt new file mode 100644 index 00000000000..64f16340a40 --- /dev/null +++ b/Zend/tests/bug69832.phpt @@ -0,0 +1,26 @@ +--TEST-- +Bug #69832 (Assertion failed in zend_compile_const_expr_magic_const) +--FILE-- +foo); + +?> +--EXPECT-- +array(2) { + [0]=> + int(1) + [1]=> + string(4) "Test" +} diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index bd7b65f1e86..e934fef1a9d 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -5621,6 +5621,7 @@ static zend_bool zend_try_ct_eval_array(zval *result, zend_ast *ast) /* {{{ */ { zend_ast_list *list = zend_ast_get_list(ast); uint32_t i; + zend_bool is_constant = 1; /* First ensure that *all* child nodes are constant and by-val */ for (i = 0; i < list->children; ++i) { @@ -5632,10 +5633,14 @@ static zend_bool zend_try_ct_eval_array(zval *result, zend_ast *ast) /* {{{ */ if (by_ref || elem_ast->child[0]->kind != ZEND_AST_ZVAL || (elem_ast->child[1] && elem_ast->child[1]->kind != ZEND_AST_ZVAL) ) { - return 0; + is_constant = 0; } } + if (!is_constant) { + return 0; + } + array_init_size(result, list->children); for (i = 0; i < list->children; ++i) { zend_ast *elem_ast = list->child[i];