| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2019-07-17 09:20 UTC] nikic@php.net
  [2019-07-17 10:31 UTC] theultramage at gmail dot com
  [2019-07-17 10:45 UTC] nikic@php.net
  [2019-07-17 10:52 UTC] theultramage at gmail dot com
  [2019-07-17 11:03 UTC] nikic@php.net
  [2019-07-17 11:46 UTC] theultramage at gmail dot com
  [2019-07-17 15:24 UTC] nikic@php.net
  [2021-02-23 11:25 UTC] cmb@php.net
 
-Status:      Open
+Status:      Feedback
-Assigned To:
+Assigned To: nikita
  [2021-02-23 11:25 UTC] cmb@php.net
  [2021-02-23 13:20 UTC] theultramage at gmail dot com
  [2021-03-07 04:22 UTC] php-bugs at lists dot php dot net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 03:00:01 2025 UTC | 
Description: ------------ All components have been built with whatever thread safety flags were available. However, there seems to be a multithreading issue in the way freebsd's libc is invoked, resulting in a null pointer call. This same crash happens randomly, usually once every few days. #0 0x0000000000000000 in ?? () #1 0x0000000800505e28 in mblen (s=0x8042d223b "p", n=1) at /usr/src/lib/libc/locale/mblen.c:53 #2 0x0000000801663697 in php_basename () from /usr/local/libexec/apache24/libphp7.so #3 0x000000080166383d in php_basename () from /usr/local/libexec/apache24/libphp7.so #4 0x00000008017d3de1 in zend_execute () from /usr/local/libexec/apache24/libphp7.so #5 0x000000080178061b in execute_ex () from /usr/local/libexec/apache24/libphp7.so #6 0x00000008017808b6 in zend_execute () from /usr/local/libexec/apache24/libphp7.so #7 0x0000000801733894 in zend_execute_scripts () from /usr/local/libexec/apache24/libphp7.so #8 0x00000008016c02b9 in php_execute_script () from /usr/local/libexec/apache24/libphp7.so #9 0x0000000801801808 in zend_check_arg_type () from /usr/local/libexec/apache24/libphp7.so #10 0x000000000025a5f9 in ap_invoke_handler () #11 0x0000000000295c1f in ap_process_async_request () #12 0x000000000029254d in ap_process_http_connection () #13 0x0000000000272bf9 in ap_run_process_connection () #14 0x000000000029fb61 in process_socket () #15 0x000000000029f6d7 in worker_thread () #16 0x0000000800450767 in thread_start (curthread=0x803153000) at /usr/src/lib/libthr/thread/thr_create.c:292 set = {__bits = 0x7fffdfdfcfc8} int mblen(const char *s, size_t n) { return mblen_l(s, n, __get_locale()); } int mblen_l(const char *s, size_t n, locale_t locale) { ... rval = XLOCALE_CTYPE(locale)->__mbrtowc(NULL, s, n, &locale->mblen); ... }