]> granicus.if.org Git - php/commitdiff
- Fix bug #29447: Reflection API issues
authorMarcus Boerger <helly@php.net>
Mon, 16 Aug 2004 08:48:25 +0000 (08:48 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 16 Aug 2004 08:48:25 +0000 (08:48 +0000)
Zend/zend_reflection_api.c
ext/reflection/php_reflection.c

index a7f9d2c144494ea5d2e56612ec4093fd93885dda..c97bc5f5dcfffdf80856edae5f8915a0e3bec972 100644 (file)
@@ -2358,6 +2358,7 @@ ZEND_METHOD(reflection_class, getConstants)
        METHOD_NOTSTATIC_NUMPARAMS(0);  
        GET_REFLECTION_OBJECT_PTR(ce);
        array_init(return_value);
+       zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC);
        zend_hash_copy(Z_ARRVAL_P(return_value), &ce->constants_table, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_copy, sizeof(zval *));
 }
 /* }}} */
@@ -2378,6 +2379,7 @@ ZEND_METHOD(reflection_class, getConstant)
        }
 
        GET_REFLECTION_OBJECT_PTR(ce);
+       zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC);
        if (zend_hash_find(&ce->constants_table, name, name_len + 1, (void **) &value) == FAILURE) {
                RETURN_FALSE;
        }
index a7f9d2c144494ea5d2e56612ec4093fd93885dda..c97bc5f5dcfffdf80856edae5f8915a0e3bec972 100644 (file)
@@ -2358,6 +2358,7 @@ ZEND_METHOD(reflection_class, getConstants)
        METHOD_NOTSTATIC_NUMPARAMS(0);  
        GET_REFLECTION_OBJECT_PTR(ce);
        array_init(return_value);
+       zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC);
        zend_hash_copy(Z_ARRVAL_P(return_value), &ce->constants_table, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_copy, sizeof(zval *));
 }
 /* }}} */
@@ -2378,6 +2379,7 @@ ZEND_METHOD(reflection_class, getConstant)
        }
 
        GET_REFLECTION_OBJECT_PTR(ce);
+       zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC);
        if (zend_hash_find(&ce->constants_table, name, name_len + 1, (void **) &value) == FAILURE) {
                RETURN_FALSE;
        }