mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.0' into PHP-8.1
* PHP-8.0: Fix signedness confusion in php_filter_validate_domain()
This commit is contained in:
commit
1c3374c785
2 changed files with 4 additions and 1 deletions
3
NEWS
3
NEWS
|
@ -9,6 +9,9 @@ PHP NEWS
|
|||
(Tim Düsterhus)
|
||||
. Fixed bug GH-8160 (ZTS support on Alpine is broken). (Michael Voříšek)
|
||||
|
||||
- Filter:
|
||||
. Fixed signedness confusion in php_filter_validate_domain(). (cmb)
|
||||
|
||||
- Intl:
|
||||
. Fixed bug GH-8115 (Can't catch arg type deprecation when instantiating Intl
|
||||
classes). (ilutov)
|
||||
|
|
|
@ -504,7 +504,7 @@ void php_filter_validate_regexp(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */
|
|||
}
|
||||
}
|
||||
|
||||
static int _php_filter_validate_domain(char * domain, int len, zend_long flags) /* {{{ */
|
||||
static int _php_filter_validate_domain(char * domain, size_t len, zend_long flags) /* {{{ */
|
||||
{
|
||||
char *e, *s, *t;
|
||||
size_t l;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue