diff options
author | Sebastian Bergmann <sebastian@php.net> | 2005-08-12 14:08:28 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2005-08-12 14:08:28 +0000 |
commit | 52b001cc05fa1fb085aca9189a108d7029e9c463 (patch) | |
tree | 0d5070c5f24f817647ed245fd6af4409498f3431 /ext/reflection/php_reflection.c | |
parent | 3aad9e2048217f0161f6a9fb50ac334f44d8fcc1 (diff) | |
download | php-git-52b001cc05fa1fb085aca9189a108d7029e9c463.tar.gz |
ZTS fixes.
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 9677a37f68..ebc5e6accc 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -4035,7 +4035,7 @@ ZEND_API void zend_register_reflection_api(TSRMLS_D) { reflection_object_handlers.write_property = _reflection_write_property; INIT_CLASS_ENTRY(_reflection_entry, "ReflectionException", reflection_exception_functions); - reflection_exception_ptr = zend_register_internal_class_ex(&_reflection_entry, zend_exception_get_default(), NULL TSRMLS_CC); + reflection_exception_ptr = zend_register_internal_class_ex(&_reflection_entry, zend_exception_get_default(TSRMLS_C), NULL TSRMLS_CC); INIT_CLASS_ENTRY(_reflection_entry, "Reflection", reflection_functions); reflection_ptr = zend_register_internal_class(&_reflection_entry TSRMLS_CC); |