php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #79327 Crash with pcov extension enabled
Submitted: 2020-03-01 13:46 UTC Modified: 2021-08-05 13:48 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: fkooman at tuxed dot net Assigned: cmb (profile)
Status: Closed Package: PECL (PECL)
PHP Version: 7.3.15 OS: Fedora 31 (Linux)
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: fkooman at tuxed dot net
New email:
PHP Version: OS:

 

 [2020-03-01 13:46 UTC] 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

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [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
That's infinite recursion (i.e. a programmer error), but maybe Joe
wants to deal with it.
 [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
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>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 14:01:30 2024 UTC