File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 4
4
- Fixed bug #35293 (PDO segfaults when using persistent connections). (Tony)
5
5
- Fixed bug #35278 (Multiple virtual() calls crash Apache 2 php module). (Ilia)
6
6
- Fixed bug #35273 (Error in mapping soap - java types). (Dmitry)
7
+ - Fixed bug #35243 (php_mblen() crashes when compiled with thread-safety
8
+ on Linux). (Patch: shulmanb at il dot ibm dot com, Jani)
7
9
- Fixed bug #33153 (crash in mssql_next result). (Frank)
8
10
- Fixed bug #33963 (mssql_bind() fails on input parameters). (Frank)
9
11
- Fixed bug #33201 (Crash when fetching some data types). (Frank)
Original file line number Diff line number Diff line change @@ -953,6 +953,10 @@ static void basic_globals_ctor(php_basic_globals *basic_globals_p TSRMLS_DC)
953
953
954
954
memset (& BG (url_adapt_state ), 0 , sizeof (BG (url_adapt_state )));
955
955
memset (& BG (url_adapt_state_ex ), 0 , sizeof (BG (url_adapt_state_ex )));
956
+
957
+ #if defined(_REENTRANT ) && defined(HAVE_MBRLEN ) && defined(HAVE_MBSTATE_T )
958
+ memset (& BG (mblen_state ), 0 , sizeof (BG (mblen_state )));
959
+ #endif
956
960
957
961
BG (incomplete_class ) = php_create_incomplete_class (TSRMLS_C );
958
962
}
You can’t perform that action at this time.
0 commit comments