summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-05-31 19:07:09 +0000
committerZeev Suraski <zeev@php.net>2000-05-31 19:07:09 +0000
commit13b67621cfb4ba5fc71668f353f8128346e88904 (patch)
tree7cc7c8b28e64f5d81a4f5d4d5dbf7408a2ee6483 /Zend/zend_execute.h
parent1e672d4528c8861575bd0a6f0ef0a5e60626ab21 (diff)
downloadphp-git-13b67621cfb4ba5fc71668f353f8128346e88904.tar.gz
Fix a bug in static initializers/default values/class member variables that contained
array values
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r--Zend/zend_execute.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h
index 449e4e39de..2ff01f9c18 100644
--- a/Zend/zend_execute.h
+++ b/Zend/zend_execute.h
@@ -55,7 +55,7 @@ ZEND_API int zend_is_true(zval *op);
ZEND_API inline void safe_free_zval_ptr(zval *p);
ZEND_API int zend_eval_string(char *str, zval *retval_ptr CLS_DC ELS_DC);
ZEND_API inline int i_zend_is_true(zval *op);
-ZEND_API int zval_update_constant(zval **pp);
+ZEND_API int zval_update_constant(zval **pp, void *arg);
ZEND_API inline void zend_assign_to_variable_reference(znode *result, zval **variable_ptr_ptr, zval **value_ptr_ptr, temp_variable *Ts ELS_DC);
/* dedicated Zend executor functions - do not use! */