php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #79732 Raise Segfault using fn()
Submitted: 2020-06-25 08:27 UTC Modified: 2020-06-25 08:33 UTC
From: php at stampy dot me Assigned:
Status: Duplicate Package: Unknown/Other Function
PHP Version: 7.4.7 OS: MacOS / Docker
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: php at stampy dot me
New email:
PHP Version: OS:

 

 [2020-06-25 08:27 UTC] php at stampy dot me
Description:
------------
The example below causes a segfault when it should error gracefully or loop forever.

Test script:
---------------
<?php

function fun($str) {
    array_map(fn () => fun($str), $str);
}
fun(['hello world!']);

Expected result:
----------------
Error, or no output, or endless looping

Actual result:
--------------
SegFault

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-06-25 08:33 UTC] nikic@php.net
-Status: Open +Status: Duplicate
 [2020-06-25 08:33 UTC] nikic@php.net
Duplicate of bug #64196.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 07:01:31 2024 UTC