summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2002-09-04 15:04:39 +0000
committerStanislav Malyshev <stas@php.net>2002-09-04 15:04:39 +0000
commite8f6654663ddbe1ea7a6c3076801f4b841f2bd57 (patch)
treec4eab8c6d8b40da8e649e99ec4c694ddc5f0964f /Zend/zend_object_handlers.c
parent36c60cea388ccba58f424f6f8b15b2a0b3d01620 (diff)
downloadphp-git-e8f6654663ddbe1ea7a6c3076801f4b841f2bd57.tar.gz
remove dead code
Diffstat (limited to 'Zend/zend_object_handlers.c')
-rw-r--r--Zend/zend_object_handlers.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c
index b299f6e74c..caae823cc9 100644
--- a/Zend/zend_object_handlers.c
+++ b/Zend/zend_object_handlers.c
@@ -322,11 +322,6 @@ static void zend_std_call_user_call(INTERNAL_FUNCTION_PARAMETERS)
INIT_PZVAL(method_args_ptr);
array_init(method_args_ptr);
-// method_result_ptr = &method_result;
-// method_result.is_ref = 0;
-// method_result.refcount = 1;
-// ZVAL_NULL(method_result_ptr);
-
for(i=0; i<ZEND_NUM_ARGS(); i++) {
zval_add_ref(args[i]);
add_next_index_zval(method_args_ptr, *args[i]);