|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 Patchessoapclient-bug-5.5.patch (last revision 2014-01-04 08:55 UTC by krakjoe@php.net)Pull RequestsHistoryAllCommentsChangesGit/SVN commits              [2014-01-04 08:55 UTC] krakjoe@php.net
  [2014-01-04 08:56 UTC] krakjoe@php.net
 
-Status: Open
+Status: Verified
  [2014-01-04 08:59 UTC] krakjoe@php.net
 
-Assigned To:
+Assigned To: dmitry
  [2014-01-04 08:59 UTC] krakjoe@php.net
  [2014-01-09 07:46 UTC] dmitry@php.net
 
-Status:      Verified
+Status:      Feedback
-Assigned To: dmitry
+Assigned To: krakjoe
  [2014-01-09 07:46 UTC] dmitry@php.net
  [2014-01-09 07:55 UTC] krakjoe@php.net
 
-Status: Feedback
+Status: Closed
  [2014-01-09 07:55 UTC] krakjoe@php.net
  [2014-01-09 07:55 UTC] krakjoe@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 07:00:01 2025 UTC | 
Description: ------------ Using yield in SoapClients __doRequest cause Segmentation fault. Test script: --------------- class XSoapClient extends SoapClient { function __doRequest($request, $location, $action, $version) { yield 123; } } $client = new XSoapClient(null, array('uri' => '', 'location' => '')); $x = $client->foo(); foreach($x as $r) var_dump($r); Expected result: ---------------- I wasn't really sure what result to expect, however not a Segmentation fault. Actual result: -------------- Segmentation fault