Skip to content

Commit 4c57105

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Fix GH-16849: Error dialog causes process to hang
2 parents 7417c63 + 929d42d commit 4c57105

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ PHP NEWS
1515
(dktapps)
1616
. Fixed bug GH-16902 (Set of opcache tests fail zts+aarch64). (nielsdos)
1717

18+
- Windows:
19+
. Fixed bug GH-16849 (Error dialog causes process to hang). (cmb)
20+
1821
21 Nov 2024, PHP 8.4.1
1922

2023
- BcMath:

main/main.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -2118,8 +2118,9 @@ zend_result php_module_startup(sapi_module_struct *sf, zend_module_entry *additi
21182118
_set_invalid_parameter_handler(old_invalid_parameter_handler);
21192119
}
21202120

2121-
/* Disable the message box for assertions.*/
2121+
/* Disable the message box for assertions and errors.*/
21222122
_CrtSetReportMode(_CRT_ASSERT, 0);
2123+
_CrtSetReportMode(_CRT_ERROR, 0);
21232124
#endif
21242125

21252126
#ifdef ZTS

0 commit comments

Comments
 (0)