| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2007-02-11 20:07 UTC] e at osterman dot com
  [2013-07-16 06:17 UTC] osmanov@php.net
 
-Status: Open
+Status: Wont fix
  [2013-07-16 06:17 UTC] osmanov@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 06:00:01 2025 UTC | 
Description: ------------ PHP seg faults if the user accidentally forgets to call event_init before calling the other scheduling functions. Tested on: PHP 5.1.2-1+b1 , PHP 5.1.4 Reproduce code: --------------- <?php dl('event.so'); // If you comment this next line out, PHP seg faults. //event_init(); event_dispatch( EVLOOP_NONBLOCK ); print "all done.\n"; ?> Expected result: ---------------- all done. Actual result: -------------- Segmentation fault (core dumped)