|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2020-11-15 01:31 UTC] requinix@php.net
-Status: Open
+Status: Verified
[2020-11-15 01:31 UTC] requinix@php.net
[2020-11-15 07:32 UTC] beberlei@php.net
-Assigned To:
+Assigned To: beberlei
[2020-11-15 07:49 UTC] beberlei@php.net
[2020-11-17 09:54 UTC] nikic@php.net
[2020-11-17 09:54 UTC] nikic@php.net
-Status: Verified
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 03:00:02 2025 UTC |
Description: ------------ getAttributes segfault on dynamic properties Test script: --------------- class Foobar { } $foobar = new Foobar(); $foobar->bar = 42; $reflectionObject = new ReflectionObject($foobar); $reflectionProperty = $reflectionObject->getProperty('bar'); $reflectionProperty->getAttributes(); Expected result: ---------------- Nothing Actual result: -------------- AH00052: child pid 40 exit signal Segmentation fault (11)