1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
  Fix GH-16849: Error dialog causes process to hang
This commit is contained in:
Christoph M. Becker
2024-11-25 23:08:56 +01:00
2 changed files with 5 additions and 1 deletions

3
NEWS
View File

@@ -15,6 +15,9 @@ PHP NEWS
(dktapps)
. Fixed bug GH-16902 (Set of opcache tests fail zts+aarch64). (nielsdos)
- Windows:
. Fixed bug GH-16849 (Error dialog causes process to hang). (cmb)
21 Nov 2024, PHP 8.4.1
- BcMath:

View File

@@ -2118,8 +2118,9 @@ zend_result php_module_startup(sapi_module_struct *sf, zend_module_entry *additi
_set_invalid_parameter_handler(old_invalid_parameter_handler);
}
/* Disable the message box for assertions.*/
/* Disable the message box for assertions and errors.*/
_CrtSetReportMode(_CRT_ASSERT, 0);
_CrtSetReportMode(_CRT_ERROR, 0);
#endif
#ifdef ZTS