From: Xinchen Hui Date: Fri, 7 Mar 2014 09:41:02 +0000 (+0800) Subject: Forgot to remove unused codes X-Git-Tag: POST_PHPNG_MERGE~412^2~371 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3da247e7a8a9b73f8f996c28c57fe139b629aaa8;p=php Forgot to remove unused codes --- diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 720815d437..c0f7d533b1 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -3155,13 +3155,7 @@ ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint ch if (zend_hash_num_elements(Z_ARRVAL_P(callable)) == 2) { obj = zend_hash_index_find(Z_ARRVAL_P(callable), 0); - if (Z_TYPE_P(obj) == IS_REFERENCE) { - obj = Z_REFVAL_P(obj); - } method = zend_hash_index_find(Z_ARRVAL_P(callable), 1); - if (Z_TYPE_P(method) == IS_REFERENCE) { - method = Z_REFVAL_P(method); - } } do {