summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-02-25 18:20:35 +0800
committerXinchen Hui <laruence@gmail.com>2014-02-25 18:20:35 +0800
commitf298ade89a857adaf91dc2aef06b32f5150391cc (patch)
tree858d70fc9b1cafb8521cddd9bd80281ad8fd6c45
parent499b553c18f1e4e7c09c5f8a20ddc78b7ce70309 (diff)
downloadphp-git-f298ade89a857adaf91dc2aef06b32f5150391cc.tar.gz
Fixed wrong hash_zval_identical_function
-rw-r--r--Zend/zend_operators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index 9b46ae4456..3f530b60c6 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -1714,7 +1714,7 @@ ZEND_API int compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {
}
/* }}} */
-static int hash_zval_identical_function(const zval **z1, const zval **z2) /* {{{ */
+static int hash_zval_identical_function(const zval *z1, const zval *z2) /* {{{ */
{
zval result;
TSRMLS_FETCH();
@@ -1724,7 +1724,7 @@ static int hash_zval_identical_function(const zval **z1, const zval **z2) /* {{{
* whereas this comparison function is expected to return 0 on identity,
* and non zero otherwise.
*/
- if (is_identical_function(&result, (zval *) *z1, (zval *) *z2 TSRMLS_CC)==FAILURE) {
+ if (is_identical_function(&result, z1, z2 TSRMLS_CC)==FAILURE) {
return 1;
}
return !Z_LVAL(result);