|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2015-09-01 15:59 UTC] bwoebi@php.net
 
-Status:      Open
+Status:      Assigned
-Assigned To:
+Assigned To: bwoebi
  [2015-09-01 16:04 UTC] bwoebi@php.net
  [2015-09-01 16:04 UTC] bwoebi@php.net
 
-Status: Assigned
+Status: Closed
  [2015-09-03 18:10 UTC] ab@php.net
  [2016-07-20 11:36 UTC] davey@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 04:00:01 2025 UTC | 
Description: ------------ Segmentation fault arises when using Closure::call and yield. Test script: --------------- $f = function () { $this->value = 'foo'; yield $this->value; }; $a = new class {}; var_dump( 'foo' === $f->call($a)->current() ); Expected result: ---------------- bool(true) Actual result: -------------- Segmentation fault: 11