diff options
author | George Schlossnagle <gschlossnagle@php.net> | 2003-07-03 14:11:31 +0000 |
---|---|---|
committer | George Schlossnagle <gschlossnagle@php.net> | 2003-07-03 14:11:31 +0000 |
commit | edf78b21415e078192ac304f8c784d77399045e9 (patch) | |
tree | 2f85eb8170c2e2b8861166992dbb9267873cb3a0 /ext/reflection/php_reflection.c | |
parent | 5b1a6f7be03ad76ba2de4394c822c0767b366960 (diff) | |
download | php-git-edf78b21415e078192ac304f8c784d77399045e9.tar.gz |
win build fixes (Rob Richards)
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 1f6ece9fcb..ba78b39a71 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -822,6 +822,7 @@ 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); @@ -888,6 +889,7 @@ static int _addproperty(zend_property_info *pptr, int num_args, va_list args, ze long filter = va_arg(args, long); if (pptr->flags & filter) { + TSRMLS_FETCH(); ALLOC_ZVAL(property); reflection_property_factory(ce, pptr, property TSRMLS_CC); add_next_index_zval(retval, property); |