|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-07-18 08:45 UTC] sjon at hortensius dot net
[2013-07-18 10:50 UTC] johannes@php.net
-Status: Open
+Status: Not a bug
[2013-07-18 10:50 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 27 05:00:01 2025 UTC |
Description: ------------ I was updating my machine & VM's from 5.4.17RC1 to 5.4.17 and noticed a problem, it was segfaulting. Using this test file on an upgraded machine and non-upgraded machine: machine1:~$ php --version PHP 5.4.17RC1 (cli) (built: Jun 22 2013 19:27:26) Copyright (c) 1997-2013 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies machine1:~$ php testphp Running from CLI -------- machine2:~$ php --version PHP 5.4.17-1~precise+1 (cli) (built: Jul 17 2013 18:14:06) Copyright (c) 1997-2013 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies machine2:~$ php testphp Segmentation fault (core dumped) This is on ubuntu using Ondrej's PPA for PHP 5.4, but he said he's not made any debian/ubuntu specific changes since RC1. Test script: --------------- <?php if(defined('STDIN') ) echo("Running from CLI"); else echo("Not Running from CLI"); ?> Expected result: ---------------- Expected result was "Running from CLI" Actual result: -------------- Segmentation fault (core dumped)