|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-02-22 18:28 UTC] kirkland at ubuntu dot com
Description: ------------ I just rolled the patch associated with the fix from Bug #44209: http://marc.info/?l=php-cvs&m=120367371119481&w=2 However, I see test regressions on 64-bit Linux. See the differences here: http://pastebin.com/pastebin.php?diff=d365cb1ad Most of the failed tests are in the date/time realm, so I'd think there might be some concern. Thoughts? PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 04:00:01 2025 UTC |
Test script: # cat /tmp/foo.php <?php var_dump(strtotime('0000-00-00 00:00:00')); ?> Built without patch: # php /tmp/foo.php bool(false) Built with patch: # ./cli-build/sapi/cli/php /tmp/foo.php int(-62169962400)