diff options
author | Marcus Boerger <helly@php.net> | 2004-05-31 21:43:43 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-05-31 21:43:43 +0000 |
commit | 21315c08b7a37b0c397773c79f3447bc80698686 (patch) | |
tree | 44c74b4ef739e2792281c8d435a392c7abf48aee /ext/reflection/php_reflection.c | |
parent | 374ac86e3322d16c30643dd09d1bbf1fb8c7458d (diff) | |
download | php-git-21315c08b7a37b0c397773c79f3447bc80698686.tar.gz |
Add missing initialization
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 0020272ab7..cfc84fca6c 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -942,6 +942,7 @@ static void _reflection_export(INTERNAL_FUNCTION_PARAMETERS, zend_class_entry *c } /* Create object */ + INIT_PZVAL(&reflector); if (object_and_properties_init(&reflector, ce_ptr, NULL) == FAILURE) { _DO_THROW("Could not create reflector"); } |