diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-07-17 19:17:10 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-07-17 19:17:10 +0000 |
commit | 96fc6717e9c94311366a4fd9d14176a5ec96cce9 (patch) | |
tree | b991cc5f35e464a792ac627f1eb8d844f7abef4e | |
parent | 7316ee0399236480d3b9c5f78f1732545664bfe8 (diff) | |
download | php-git-96fc6717e9c94311366a4fd9d14176a5ec96cce9.tar.gz |
Added missing init.
-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 f50d9d01a6..d4f8abbd47 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3957,6 +3957,7 @@ ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify ce->unserialize = NULL; ce->serialize_func = NULL; ce->unserialize_func = NULL; + ce->builtin_functions = NULL; } } |