mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Avoid C4090 level 1 warning
This breaks the build for PHP 8 by default.
This commit is contained in:
parent
03713ace23
commit
4f508003a9
1 changed files with 1 additions and 1 deletions
|
@ -526,7 +526,7 @@ static int SendText(char *RPath, char *Subject, char *mailTo, char *mailCc, char
|
|||
header we know it was the last thing. */
|
||||
pos2 = pos1;
|
||||
} else {
|
||||
char *pos3 = pos2;
|
||||
const char *pos3 = pos2;
|
||||
while (pos2[2] == ' ' || pos2[2] == '\t') {
|
||||
pos3 = strstr(pos2 + 2, "\r\n");
|
||||
if (pos3 != NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue