|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-12-06 09:10 UTC] johannes@php.net
-Status: Open
+Status: Feedback
[2010-12-06 09:10 UTC] johannes@php.net
[2011-01-04 21:44 UTC] daniel at ozonesolutions dot com
[2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 06:00:01 2025 UTC |
Description: ------------ eval(), when provided with a parameter string returned by the sprintf() function, causes the PHP script (in console at least) to crash with a segmentation fault. Test script: --------------- // Crashes eval(sprintf('class Roger {}')); // Does not crash eval('class Roger {}'); Expected result: ---------------- No segfaulting. Actual result: -------------- Segmentation fault