diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-06-01 12:25:32 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-06-01 12:25:32 +0000 |
| commit | 890b19a709f7fe47d8a7db740bff401893a84adc (patch) | |
| tree | 55079ed0c492cc9db0322fa85928d14f52fb0007 | |
| parent | de4a8eed86f460a7a436ebefc85a5ccbe0d0f992 (diff) | |
| download | php-git-890b19a709f7fe47d8a7db740bff401893a84adc.tar.gz | |
no need to fetch trsm_ls when it's already available
| -rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 5dac6120b7..08ddbf896e 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2955,7 +2955,6 @@ static int _addmethod(zend_function *mptr, int num_args, va_list args, zend_hash long filter = va_arg(args, long); if (mptr->common.fn_flags & filter) { - TSRMLS_FETCH(); ALLOC_ZVAL(method); reflection_method_factory(ce, mptr, method TSRMLS_CC); add_next_index_zval(retval, method); @@ -3092,7 +3091,6 @@ static int _addproperty(zend_property_info *pptr, int num_args, va_list args, ze } if (pptr->flags & filter) { - TSRMLS_FETCH(); ALLOC_ZVAL(property); reflection_property_factory(ce, pptr, property TSRMLS_CC); add_next_index_zval(retval, property); |
