php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #78989 Delayed variance check involving trait segfaults
Submitted: 2019-12-18 09:48 UTC Modified: -
From: nikic@php.net Assigned:
Status: Closed Package: Scripting Engine problem
PHP Version: 7.4Git-2019-12-18 (Git) OS:
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
25 - 23 = ?
Subscribe to this entry?

 
 [2019-12-18 09:48 UTC] nikic@php.net
Description:
------------
Delayed variance checks may crash when traits are involved. I believe this is because we keep around a zend_function pointer to a zend_function that only exists temporarily.

Test script:
---------------
<?php
class X {
    function method($a): T {}
}
trait T {
    function method($r): B {}
}
class U extends X {
    use T;
}



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-01-28 09:45 UTC] nikic@php.net
Automatic comment on behalf of nikita.ppv@gmail.com
Revision: http://git.php.net/?p=php-src.git;a=commit;h=1146bdb9b21cdf725dd5ea8882221356779926b6
Log: Fixed bug #78989
 [2020-01-28 09:45 UTC] nikic@php.net
-Status: Open +Status: Closed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 15:01:28 2024 UTC