summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-08-17 18:56:54 +0000
committerMarcus Boerger <helly@php.net>2003-08-17 18:56:54 +0000
commit717b5afe1d11fabe0081453abe275f352a0e9b24 (patch)
treeed709a3b28113b72950679876896b474c625116e /ext/reflection/php_reflection.c
parentcbb011da2d1c1428c96418622301ee0499127e57 (diff)
downloadphp-git-717b5afe1d11fabe0081453abe275f352a0e9b24.tar.gz
Fix warnings
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index 1277fca145..81d9b4d72b 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -753,15 +753,12 @@ ZEND_FUNCTION(reflection_function_invoke)
{
zval *retval_ptr;
zval ***params;
- reflection_object *intern;
- zend_function *fptr;
zval *fname;
int result;
int argc = ZEND_NUM_ARGS();
zend_fcall_info fci;
METHOD_NOTSTATIC;
- GET_REFLECTION_OBJECT_PTR(fptr);
params = safe_emalloc(sizeof(zval **), argc, 0);
if (zend_get_parameters_array_ex(argc, params) == FAILURE) {