1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

Merge branch 'PHP-8.1' into PHP-8.2

This commit is contained in:
George Peter Banyard
2022-12-23 13:57:58 +00:00
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -12,6 +12,9 @@ PHP NEWS
- Opcache:
. Fix inverted bailout value in zend_runtime_jit() (Max Kellermann).
- PHPDBG:
. Fix undefined behaviour in phpdbg_load_module_or_extension(). (nielsdos)
05 Jan 2023, PHP 8.2.1
- Core:
+1 -1
View File
@@ -1321,7 +1321,7 @@ PHPDBG_API const char *phpdbg_load_module_or_extension(char **path, const char *
module_entry->handle = handle;
if ((module_entry = zend_register_module_ex(module_entry)) == NULL) {
phpdbg_error("Unable to register module %s", module_entry->name);
phpdbg_error("Unable to register module %s", *name);
goto quit;
}