|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-04-20 03:58 UTC] laruence@php.net
[2015-04-20 03:58 UTC] laruence@php.net
-Status: Open
+Status: Closed
[2016-07-20 11:39 UTC] davey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 08:00:01 2025 UTC |
Description: ------------ double free on recursively call to list dtor Test script: --------------- <?php class O { public $ch; public function dummy() { } } $ch = curl_init(); $o = new O; $o->ch = $ch; curl_setopt($ch, CURLOPT_WRITEFUNCTION, array($o, "dummy")); Expected result: ---------------- non segfault Actual result: -------------- segfault