From c92758c89e1896e027320a4800c12c21d89aba82 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Tue, 5 Nov 2002 19:06:40 +0000 Subject: [PATCH] - Fix bug introduced with type change of free_op1/2 --- Zend/zend_execute_API.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1