mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4: dom: Fix missing NUL byte check on C14NFile()
This commit is contained in:
1
NEWS
1
NEWS
@@ -12,6 +12,7 @@ PHP NEWS
|
||||
(ndossche)
|
||||
. Fixed bug GH-20395 (querySelector and querySelectorAll requires elements
|
||||
in $selectors to be lowercase). (ndossche)
|
||||
. Fix missing NUL byte check on C14NFile(). (ndossche)
|
||||
|
||||
- Opcache:
|
||||
. Fixed bug GH-20329 (opcache.file_cache broken with full interned string
|
||||
|
||||
@@ -2126,7 +2126,7 @@ static void dom_canonicalization(INTERNAL_FUNCTION_PARAMETERS, int mode) /* {{{
|
||||
}
|
||||
} else {
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS(),
|
||||
"s|bba!a!", &file, &file_len, &exclusive,
|
||||
"p|bba!a!", &file, &file_len, &exclusive,
|
||||
&with_comments, &xpath_array, &ns_prefixes) == FAILURE) {
|
||||
RETURN_THROWS();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user