|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-10-16 10:15 UTC] nikic@php.net
-Assigned To:
+Assigned To: nikic
[2020-10-22 08:43 UTC] nikic@php.net
-Status: Assigned
+Status: Closed
[2020-10-22 08:43 UTC] nikic@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 12:00:01 2025 UTC |
Description: ------------ @bwoebi came up with this reduction of oss-fuzz #25697 a while ago, report a bug to make sure it doesn't get lost in a chat log... Test script: --------------- <?php function gen() { yield 0; yield from gen(); } function bar($gen) { yield from $gen; } $gen = gen(); $a = bar($gen); $b = bar($gen); $a->rewind(); $b->rewind(); $a->next(); unset($gen); unset($a); unset($b);