Skip to content

Commit

Permalink
Merge branch 'PHP-8.3' into PHP-8.4
Browse files Browse the repository at this point in the history
* PHP-8.3:
  Fix GH-16849: Error dialog causes process to hang
  • Loading branch information
cmb69 committed Nov 25, 2024
2 parents 7417c63 + 929d42d commit 4c57105
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4c57105

Please sign in to comment.