From 1d01e2334cc6749d0af0164d578e6307b5f92323 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Mon, 11 Aug 2014 06:47:09 +0100 Subject: [PATCH] fix incorrect cast of comparison function and signature of function --- Zend/zend_operators.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index c34b5c7f32..403eb7c290 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1888,10 +1888,9 @@ ZEND_API int compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* { } /* }}} */ -static int hash_zval_identical_function(zval *z1, zval *z2) /* {{{ */ +static int hash_zval_identical_function(zval *z1, zval *z2 TSRMLS_DC) /* {{{ */ { zval result; - TSRMLS_FETCH(); /* is_identical_function() returns 1 in case of identity and 0 in case * of a difference; -- 2.40.0