summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-03-07 22:23:14 +0000
committerMarcus Boerger <helly@php.net>2005-03-07 22:23:14 +0000
commit757da1eed5ffbc1c5a0ae07e82ae91f7e431f1a2 (patch)
tree8d0f2490a6b7bf00a924d566e02bca1a22f02259 /Zend/zend_compile.c
parent9b8725a967cab0e62da619784e78479bf8eae193 (diff)
downloadphp-git-757da1eed5ffbc1c5a0ae07e82ae91f7e431f1a2.tar.gz
- New Interface Serializeable
- Change signature of unserialize() callback to ease inheritance and support code reuse of handlers
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r--Zend/zend_compile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index 3309608b51..a2741faa42 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -3848,6 +3848,8 @@ ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify
ce->module = NULL;
ce->serialize = NULL;
ce->unserialize = NULL;
+ ce->serialize_func = NULL;
+ ce->unserialize_func = NULL;
}
}