Re: [PHP-DEV] PHP 4.3.0-dev-zend2-alpha segfaulting

2002-06-15 Thread Andi Gutmans
Hi, Thanks for the good bug report. I have fixed this problem in the CVS. Andi At 12:39 PM 6/14/2002 +0200, Hakan Kuecuekyilmaz wrote: >Hi, > >following script segfaults at > >in doubleloop 10/22 >Segmentation fault > >class benchmark >{ > var $index; > > function benchmark($num) > { >

[PHP-DEV] PHP 4.3.0-dev-zend2-alpha segfaulting

2002-06-14 Thread Hakan Kuecuekyilmaz
Hi, following script segfaults at in doubleloop 10/22 Segmentation fault index = $i; } } } for ($i = 0; $i < 100; $i++) { for ($j = 0; $j < 100; $j++) { $arr[$i][$j] = new benchmark(100); echo "in doubleloop ". $i . "/" . $j . "\n"; } } ?> with php 4.2.1 everything is fi