ID: 13341 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Analyzed -Bug Type: Reproducible crash +Bug Type: Output Control Operating System: linux PHP Version: 4.0.6 Assigned To: yohgaki
Previous Comments: ------------------------------------------------------------------------ [2002-01-06 16:54:47] [EMAIL PROTECTED] also true for 4.1.1 Greetz, ------------------------------------------------------------------------ [2002-01-06 09:26:14] [EMAIL PROTECTED] yup still segfaults with 4.1.0 ------------------------------------------------------------------------ [2002-01-06 07:41:19] [EMAIL PROTECTED] Does this problem still occur with 4.1.1 and/or the latest CVS? ------------------------------------------------------------------------ [2001-09-17 06:20:22] [EMAIL PROTECTED] Fixed typo; Btw where did the bug reporters stats go? It looks good to be on top ;) ------------------------------------------------------------------------ [2001-09-17 06:14:58] [EMAIL PROTECTED] Hiya, Using the same var from the function and changing will sefault, copying it first to another var will work... but should not happen, see examples <? ob_start('Segfault_Me'); // works function Segfault_Me ($data) { $data2 = $data . "I didn't segfault :) :) :)"; return($data2); } // segfaults function Segfault_Me ($data) { $data = "I didn't segfault :) :) :)"; return($data); } // segfaults 2 function Segfault_Me ($data) { $data = str_replace('a', 'b', $data); return($data); } ?> I segfaulted :( :( :( Greetz, Wico de Leeuw ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=13341&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php