We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7aac1c1 + 771dbdb commit 1c3374cCopy full SHA for 1c3374c
NEWS
@@ -9,6 +9,9 @@ PHP NEWS
9
(Tim Düsterhus)
10
. Fixed bug GH-8160 (ZTS support on Alpine is broken). (Michael Voříšek)
11
12
+- Filter:
13
+ . Fixed signedness confusion in php_filter_validate_domain(). (cmb)
14
+
15
- Intl:
16
. Fixed bug GH-8115 (Can't catch arg type deprecation when instantiating Intl
17
classes). (ilutov)
ext/filter/logical_filters.c
@@ -504,7 +504,7 @@ void php_filter_validate_regexp(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */
504
}
505
506
507
-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) /* {{{ */
508
{
509
char *e, *s, *t;
510
size_t l;
0 commit comments