|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-05-08 06:08 UTC] laruence@php.net
-Assigned To:
+Assigned To: nikic
[2015-05-12 13:10 UTC] nikic@php.net
[2015-05-12 13:10 UTC] nikic@php.net
-Status: Assigned
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 17:00:01 2025 UTC |
Description: ------------ PHP crashes if I use variardic, Exception and generator together. Test script: --------------- // Minimal example to reproduce function crash() { sin(...[0]); throw new \Exception(); yield; } iterator_to_array(crash()); Expected result: ---------------- PHP Fatal error: Uncaught exception 'Exception'… blah-blah Actual result: -------------- Segmentation fault: 11