ID: 40770
User updated by: php at edwardk dot info
Reported By: php at edwardk dot info
-Status: Feedback
+Status: Open
Bug Type: Reproducible crash
Operating System: Windows 2003
PHP Version: 5.2.1
New Comment:
I don't believe so. It should be the official PHP 5.2.1 windows binary
release.
phpinfo() reports:
PHP Version 5.2.1
Build Date Feb 7 2007 23:10:31
Configure Command cscript /nologo configure.js
"--enable-snapshot-build" "--with-gd=shared"
Previous Comments:
------------------------------------------------------------------------
[2007-03-11 14:52:57] [EMAIL PROTECTED]
Are you running debug build of PHP by any chance?
------------------------------------------------------------------------
[2007-03-10 03:24:58] php at edwardk dot info
Description:
------------
Running Apache 1.3.37 with PHP 5.2.1 on Windows 2003 Standard 32bit
The following PHP code was called from a browser with the size=149 (to
simulate 149MB use) and the PHP memory limit is 160M.
Reproduce code:
---------------
<?
ini_set('display_errors',true);
if (isset($_GET['size']) && $_GET['size'] < 200) {
$mb = intval($_GET['size']);
}
else {
$mb=5;
}
$var = '';
echo 'Memory limit: '.ini_get('memory_limit').'<br>';
for ($i=0; $i<=$mb; $i++) {
$var.= str_repeat('a',1*1024*1024);
echo memory_get_usage().'<br>';
}
echo 'String length: '. strlen($var);
?>
Expected result:
----------------
PHP should, if it did run out of memory, exit with something along the
lines of
Fatal error: Allowed memory size of xxx bytes exhausted (tried to
allocate yyy bytes)
otherwise, the script should execute without crashing.
Actual result:
--------------
Apache child exits, browser waiting for the result of the page get a
TCP connection reset and no page loaded.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=40770&edit=1