|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-04-01 21:44 UTC] tpunt@php.net
-Status: Open
+Status: Wont fix
[2017-04-01 21:44 UTC] tpunt@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 18:00:01 2025 UTC |
Description: ------------ Using '*' to reference a block previously defined with '&' causes core dumps and "zend_mm_heap corrupted" messages. Reproduce code: --------------- var_dump(syck_load(" a: &b c: x d: *b ")); Expected result: ---------------- array(2) { ["a"]=> array(1) { ["c"]=> string(1) "x" } ["d"]=> array(1) { ["c"]=> string(1) "x" } } Actual result: -------------- Segmentation fault (core dumped)