Edit report at https://bugs.php.net/bug.php?id=79327&edit=1
ID: 79327 Updated by: c...@php.net Reported by: fkooman at tuxed dot net Summary: Crash with pcov extension enabled -Status: Assigned +Status: Closed Type: Bug Package: PECL Operating System: Fedora 31 (Linux) PHP Version: 7.3.15 -Assigned To: krakjoe +Assigned To: cmb Block user comment: N Private report: N New Comment: The pcov bug tracker is on Github[1] now, so please report the issue there, if you're still experiencing it with latest pcov (1.0.9). [1] <https://github.com/krakjoe/pcov/issues> Previous Comments: ------------------------------------------------------------------------ [2020-03-01 16:22:50] c...@php.net That's infinite recursion (i.e. a programmer error), but maybe Joe wants to deal with it. ------------------------------------------------------------------------ [2020-03-01 13:46:41] fkooman at tuxed dot net 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 ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=79327&edit=1 -- PECL development discussion Mailing List (https://pecl.php.net/) To unsubscribe, visit: https://www.php.net/unsub.php