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: Open Type: Bug -Package: *General Issues +Package: PECL Operating System: Fedora 31 (Linux) PHP Version: 7.3.15 -Assigned To: +Assigned To: krakjoe Block user comment: N Private report: N New Comment: That's infinite recursion (i.e. a programmer error), but maybe Joe wants to deal with it. Previous Comments: ------------------------------------------------------------------------ [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 (http://pecl.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php