Edit report at http://bugs.php.net/bug.php?id=53362&edit=1
ID: 53362 Updated by: paj...@php.net Reported by: public at grik dot net Summary: Segmentation fault when extending SplFixedArray -Status: Open +Status: Feedback Type: Bug Package: SPL related Operating System: Linux, Windows PHP Version: 5.3.3 Block user comment: N Private report: N New Comment: Can you try using 5.3.4RC1 please? Previous Comments: ------------------------------------------------------------------------ [2010-11-19 20:27:30] public at grik dot net Program received signal SIGSEGV, Segmentation fault. 0x00000000005cbfcf in spl_fixedarray_object_write_dimension (object=0x80232c818, offset=0x0, value=0x8023310a8) at /usr/ports/lang/php5/work/php-5.3.3/ext/spl/spl_fixedarray.c:409 409 in /usr/ports/lang/php5/work/php-5.3.3/ext/spl/spl_fixedarray.c ------------------------------------------------------------------------ [2010-11-19 20:15:39] public at grik dot net Description: ------------ Segmentation fault when extending SplFixedArray and working with it as with an array. Test script: --------------- <?php class obj extends SplFixedArray{ public function offsetSet($offset, $value) {} } $obj = new obj; $obj[]=2; Expected result: ---------------- nothing Actual result: -------------- Segmentation fault ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=53362&edit=1