We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa352c2 commit 771dbdbCopy full SHA for 771dbdb
NEWS
@@ -8,6 +8,9 @@ PHP NEWS
8
(Tim Düsterhus)
9
. Fixed bug GH-8160 (ZTS support on Alpine is broken). (Michael Voříšek)
10
11
+- Filter:
12
+ . Fixed signedness confusion in php_filter_validate_domain(). (cmb)
13
+
14
- Intl:
15
. Fixed bug GH-8142 (Compilation error on cygwin). (David Carlier)
16
ext/filter/logical_filters.c
@@ -496,7 +496,7 @@ void php_filter_validate_regexp(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */
496
}
497
498
499
-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) /* {{{ */
500
{
501
char *e, *s, *t;
502
size_t l;
0 commit comments