diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2018-10-07 11:20:38 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2018-10-07 11:21:48 +0200 |
commit | dcdf1ccf685a486c8073cedb7533302a4171bea1 (patch) | |
tree | 2fe322625bd2e4d7fcb5a05640cf8b62f84d8a00 | |
parent | cdedc1cb896177fe8896834b6f0d17f49db09aa2 (diff) | |
download | php-git-dcdf1ccf685a486c8073cedb7533302a4171bea1.tar.gz |
Initialize ce->parent_name to NULL
-rw-r--r-- | Zend/zend_compile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index e791500fa4..daaf00c9b1 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1639,6 +1639,7 @@ ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify ce->iterator_funcs_ptr = NULL; ce->get_static_method = NULL; ce->parent = NULL; + ce->parent_name = NULL; ce->num_interfaces = 0; ce->interfaces = NULL; ce->num_traits = 0; |