ID:               34269
 Updated by:       [EMAIL PROTECTED]
 Reported By:      eka1970 at mail dot ru
-Status:           Open
+Status:           Feedback
 Bug Type:         Arrays related
 Operating System: red hat 7.3
 PHP Version:      4.4.0
 New Comment:

Jani asked to *TRY* PHP5, not to install and use it instead of PHP4.
Please do so or tell that you're not interested in solution for your
problem. Thank you.


Previous Comments:
------------------------------------------------------------------------

[2005-08-28 07:09:36] eka1970 at mail dot ru

If you're not going to fix this and propose to use v5, please confirm
there will be no more updates for v4.x.

------------------------------------------------------------------------

[2005-08-28 00:57:33] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip



------------------------------------------------------------------------

[2005-08-26 19:36:29] eka1970 at mail dot ru

Description:
------------
hundreds of thousands of "$a[]= ..." and "array_pop()" calls triggers
memory overwrite.

Reproduce code:
---------------
<?php

$a = array(0,1,2,3,4,5,6,7,8,9,10);

$paths = array();

$stack = array();
for($i=0; $i<100000; $i++) {
    $steps = mt_rand(2,6);
    // move forward
    for($j=0; $j<$steps; $j++) { $stack[] = array('x'=>$a[$j]); }
    $paths[] = $stack;
    // move backward
    for($j=0; $j<$steps; $j++) { array_pop($stack); }
}

print_r($a);

?>

Expected result:
----------------
array $a is never modified in the code, but when you print it at the
end of the script it spills out a whole lot of unexpected reccursions
or just dies with no output.



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=34269&edit=1

Reply via email to