]> granicus.if.org Git - php/commitdiff
Fix bug #69832 (Assertion failure)
authorBob Weinand <bobwei9@hotmail.com>
Mon, 15 Jun 2015 15:41:47 +0000 (17:41 +0200)
committerBob Weinand <bobwei9@hotmail.com>
Mon, 15 Jun 2015 15:43:09 +0000 (17:43 +0200)
Zend/tests/bug69832.phpt [new file with mode: 0644]
Zend/zend_compile.c

diff --git a/Zend/tests/bug69832.phpt b/Zend/tests/bug69832.phpt
new file mode 100644 (file)
index 0000000..64f1634
--- /dev/null
@@ -0,0 +1,26 @@
+--TEST--
+Bug #69832 (Assertion failed in zend_compile_const_expr_magic_const)
+--FILE--
+<?php
+
+class Test {
+       public $foo = [Bar::A, __CLASS__];
+}
+
+eval(<<<'PHP'
+class Bar {
+       const A = 1;
+}
+PHP
+);
+
+var_dump((new Test)->foo);
+
+?>
+--EXPECT--
+array(2) {
+  [0]=>
+  int(1)
+  [1]=>
+  string(4) "Test"
+}
index bd7b65f1e86de5ad5d78998f8e0c7a5bd4fb8dad..e934fef1a9d7072905600be026d6c0693d64055f 100644 (file)
@@ -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];