From: Zeev Suraski Date: Sat, 5 Feb 2000 16:38:50 +0000 (+0000) Subject: More cleanup X-Git-Tag: BEFORE_SAPIFICATION_FEB_10_2000~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1a837ad17c5f24f53a7dec279673f31f0883825;p=php More cleanup --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 86f5548614..d798e5f59d 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -61,7 +61,7 @@ /* Prototypes */ static zval get_overloaded_property(ELS_D); static void set_overloaded_property(zval *value ELS_DC); -static void call_overloaded_function(int arg_count, zval *return_value, HashTable *list, HashTable *plist ELS_DC); +static void call_overloaded_function(int arg_count, zval *return_value ELS_DC); static inline void zend_fetch_var_address(znode *result, znode *op1, znode *op2, temp_variable *Ts, int type ELS_DC); static inline void zend_fetch_dimension_address(znode *result, znode *op1, znode *op2, temp_variable *Ts, int type ELS_DC); static inline void zend_fetch_property_address(znode *result, znode *op1, znode *op2, temp_variable *Ts, int type ELS_DC); @@ -925,7 +925,7 @@ static void set_overloaded_property(zval *value ELS_DC) } -static void call_overloaded_function(int arg_count, zval *return_value, HashTable *list, HashTable *plist ELS_DC) +static void call_overloaded_function(int arg_count, zval *return_value ELS_DC) { zend_property_reference *property_reference; @@ -1595,7 +1595,7 @@ do_fcall_common: } else { /* ZEND_OVERLOADED_FUNCTION */ ALLOC_ZVAL(Ts[opline->result.u.var].var.ptr); INIT_ZVAL(*(Ts[opline->result.u.var].var.ptr)); - call_overloaded_function(opline->extended_value, Ts[opline->result.u.var].var.ptr, &EG(regular_list), &EG(persistent_list) ELS_CC); + call_overloaded_function(opline->extended_value, Ts[opline->result.u.var].var.ptr ELS_CC); efree(fbc); if (!return_value_used) { zval_ptr_dtor(&Ts[opline->result.u.var].var.ptr);