mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: Avoid C4090 level 1 warning
This commit is contained in:
commit
ff8da0dcff
1 changed files with 1 additions and 1 deletions
|
@ -527,7 +527,7 @@ static int SendText(char *RPath, const char *Subject, const char *mailTo, char *
|
||||||
header we know it was the last thing. */
|
header we know it was the last thing. */
|
||||||
pos2 = pos1;
|
pos2 = pos1;
|
||||||
} else {
|
} else {
|
||||||
char *pos3 = pos2;
|
const char *pos3 = pos2;
|
||||||
while (pos2[2] == ' ' || pos2[2] == '\t') {
|
while (pos2[2] == ' ' || pos2[2] == '\t') {
|
||||||
pos3 = strstr(pos2 + 2, "\r\n");
|
pos3 = strstr(pos2 + 2, "\r\n");
|
||||||
if (pos3 != NULL) {
|
if (pos3 != NULL) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue