From: Andi Gutmans Date: Tue, 5 Nov 2002 19:06:40 +0000 (+0000) Subject: - Fix bug introduced with type change of free_op1/2 X-Git-Tag: php-4.3.0RC1~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c92758c89e1896e027320a4800c12c21d89aba82;p=php - Fix bug introduced with type change of free_op1/2 --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index e451aa54d5..8814964269 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -479,7 +479,7 @@ int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *fun zend_function_state *original_function_state_ptr; zend_op_array *original_op_array; zend_op **original_opline_ptr; - int orig_free_op1, orig_free_op2; + zval *orig_free_op1, *orig_free_op2; int (*orig_unary_op)(zval *result, zval *op1); int (*orig_binary_op)(zval *result, zval *op1, zval *op2 TSRMLS_DC); zval function_name_copy;