Skip to content

Commit 929d42d

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix GH-16849: Error dialog causes process to hang
2 parents 0b5de30 + e75061b commit 929d42d

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
@@ -63,6 +63,9 @@ PHP NEWS
6363
- SOAP:
6464
. Fix make check being invoked in ext/soap. (Ma27)
6565

66+
- Windows:
67+
. Fixed bug GH-16849 (Error dialog causes process to hang). (cmb)
68+
6669
07 Nov 2024, PHP 8.3.14RC1
6770

6871
- CLI:

main/main.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -2078,8 +2078,9 @@ zend_result php_module_startup(sapi_module_struct *sf, zend_module_entry *additi
20782078
_set_invalid_parameter_handler(old_invalid_parameter_handler);
20792079
}
20802080

2081-
/* Disable the message box for assertions.*/
2081+
/* Disable the message box for assertions and errors.*/
20822082
_CrtSetReportMode(_CRT_ASSERT, 0);
2083+
_CrtSetReportMode(_CRT_ERROR, 0);
20832084
#endif
20842085

20852086
#ifdef ZTS

0 commit comments

Comments
 (0)