Skip to content

Commit 7544f66

Browse files
committed
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: Fix build warning
2 parents a4d9ccb + 310c056 commit 7544f66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/imap/php_imap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3072,7 +3072,7 @@ static zend_bool header_injection(zend_string *str, zend_bool adrlist)
30723072
/* adrlists do not support folding, but swallow trailing line breaks */
30733073
&& !((adrlist && p[1] == '\0')
30743074
/* other headers support folding */
3075-
|| !adrlist && (p[1] == ' ' || p[1] == '\t'))) {
3075+
|| (!adrlist && (p[1] == ' ' || p[1] == '\t')))) {
30763076
return 1;
30773077
}
30783078
p++;

0 commit comments

Comments
 (0)