Skip to content

Commit 976cbba

Browse files
committed
Merge branch 'PHP-8.0' into PHP-8.1
2 parents f97a650 + b765d4c commit 976cbba

File tree

7 files changed

+595
-235
lines changed

7 files changed

+595
-235
lines changed

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ PHP NEWS
2626
. Fixed bug GH-8591 (tracing JIT crash after private instance method change).
2727
(Arnaud, Dmitry, Oleg Stepanischev)
2828

29+
- OpenSSL:
30+
. Fixed bug #50293 (Several openssl functions ignore the VCWD).
31+
(Jakub Zelenka, cmb)
32+
. Fixed bug #81713 (NULL byte injection in several OpenSSL functions working
33+
with certificates). (Jakub Zelenka)
34+
2935
09 Jun 2022, PHP 8.1.7
3036

3137
- CLI:

Zend/zend_API.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_unexpected_extra_named_error(void)
357357
class_name, space, get_active_function_name());
358358
}
359359

360-
static ZEND_COLD void ZEND_FASTCALL zend_argument_error_variadic(zend_class_entry *error_ce, uint32_t arg_num, const char *format, va_list va) /* {{{ */
360+
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_error_variadic(zend_class_entry *error_ce, uint32_t arg_num, const char *format, va_list va) /* {{{ */
361361
{
362362
zend_string *func_name;
363363
const char *arg_name;

Zend/zend_API.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,7 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_or_string_or_nu
13331333
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_error(uint32_t num, char *error);
13341334
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_or_null_error(uint32_t num, char *error);
13351335
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_unexpected_extra_named_error(void);
1336+
ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_error_variadic(zend_class_entry *error_ce, uint32_t arg_num, const char *format, va_list va);
13361337
ZEND_API ZEND_COLD void zend_argument_error(zend_class_entry *error_ce, uint32_t arg_num, const char *format, ...);
13371338
ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format, ...);
13381339
ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *format, ...);

0 commit comments

Comments
 (0)