diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | ext/mbstring/mbstring.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -17,6 +17,10 @@ PHP NEWS incorrectly) - added new log related FPM configuration options: log_limit, log_buffering and decorate_workers_output. (Jakub Zelenka) +- mbstring: + . Fixed bug #76594 (Bus Error due to unaligned access in zend_ini.c + OnUpdateLong). (cmb, Nikita) + - PDO_Firebird: . Fixed bug #74462 (PDO_Firebird returns only NULLs for results with boolean for FIREBIRD >= 3.0). (Dorin Marcoci) diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 01c070b584..c3843d7963 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -1502,7 +1502,7 @@ PHP_INI_BEGIN() STD_PHP_INI_BOOLEAN("mbstring.strict_detection", "0", PHP_INI_ALL, - OnUpdateLong, + OnUpdateBool, strict_detection, zend_mbstring_globals, mbstring_globals) PHP_INI_END() /* }}} */ |