summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorLevi Morrison <levim@php.net>2015-04-14 09:45:41 -0600
committerLevi Morrison <levim@php.net>2015-04-14 09:45:41 -0600
commitdad622bf42eaba151a2558f0d59b3a06e1a444b9 (patch)
treee491014849a301c7b3f34702a85ebcd2f0ccbfd9 /ext/reflection/php_reflection.c
parent8dfb35eae0cd900de0537614e1ee2afb55794560 (diff)
downloadphp-git-dad622bf42eaba151a2558f0d59b3a06e1a444b9.tar.gz
Fix bug #69448
ReflectionClass::newInstanceWithoutConstructor should not call object_init_ex when the class is internal and final. This is because the class dtor may rely on the ctor being called and in some cases this will cause a segfault.
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index 47cf107b19..bec69b2bbd 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -4315,6 +4315,7 @@ ZEND_METHOD(reflection_class, newInstanceWithoutConstructor)
if (ce->create_object != NULL && ce->ce_flags & ZEND_ACC_FINAL) {
zend_throw_exception_ex(reflection_exception_ptr, 0, "Class %s is an internal class marked as final that cannot be instantiated without invoking its constructor", ce->name->val);
+ return;
}
object_init_ex(return_value, ce);