summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-01-22 12:23:01 +0000
committerMarcus Boerger <helly@php.net>2005-01-22 12:23:01 +0000
commit1d5c13bdad8416d96f22ce1e0da9b3dfba7c8fe5 (patch)
tree3923274d9cc0325b7838089764833e34ad2895ca /Zend/zend_API.h
parentbad986232bd56d920ef9edf10314ff3c02eee2ee (diff)
downloadphp-git-1d5c13bdad8416d96f22ce1e0da9b3dfba7c8fe5.tar.gz
- Fix #31651 (ReflectionClass::getDefaultProperties segfaults with arrays.)
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index f3ba9ebf9e..9d4a1ebf03 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -191,6 +191,7 @@ ZEND_API int zend_declare_property_null(zend_class_entry *ce, char *name, int na
ZEND_API int zend_declare_property_long(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC);
ZEND_API int zend_declare_property_string(zend_class_entry *ce, char *name, int name_length, char *value, int access_type TSRMLS_DC);
+ZEND_API void zend_update_class_constants(zend_class_entry *class_type TSRMLS_DC);
ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, char *name, int name_length, zval *value TSRMLS_DC);
ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, char *name, int name_length TSRMLS_DC);
ZEND_API void zend_update_property_long(zend_class_entry *scope, zval *object, char *name, int name_length, long value TSRMLS_DC);