|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-03-01 16:22 UTC] cmb@php.net
-Package: *General Issues
+Package: PECL
-Assigned To:
+Assigned To: krakjoe
[2020-03-01 16:22 UTC] cmb@php.net
[2021-08-05 13:48 UTC] cmb@php.net
-Status: Assigned
+Status: Closed
-Assigned To: krakjoe
+Assigned To: cmb
[2021-08-05 13:48 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 18:00:01 2025 UTC |
Description: ------------ running code below with pcov pecl extension enabled crashes PHP (cli) Test script: --------------- <?php class Foo { public function crash() { $this->crash(); } } $f = new Foo(); $f->crash(); Expected result: ---------------- no crash Actual result: -------------- crash