]> granicus.if.org Git - php/commitdiff
Fixed zend_read_static_property
authorXinchen Hui <laruence@gmail.com>
Tue, 14 Aug 2018 05:01:50 +0000 (13:01 +0800)
committerXinchen Hui <laruence@gmail.com>
Tue, 14 Aug 2018 05:01:50 +0000 (13:01 +0800)
Zend/zend_API.c

index d1288326eafbc72c31d53ead17a454203601abc9..87d62729802c486a8fbcdfd73eea3b8a8e3d6055 100644 (file)
@@ -4193,7 +4193,7 @@ ZEND_API zval *zend_read_static_property_ex(zend_class_entry *scope, zend_string
 ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent) /* {{{ */
 {
        zend_string *key = zend_string_init(name, name_length, 0);
-       zval *property = zend_std_get_static_property(scope, key, silent);
+       zval *property = zend_read_static_property_ex(scope, key, silent);
        zend_string_efree(key);
        return property;
 }