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.
1 parent 43b6bdf commit e12fe64Copy full SHA for e12fe64
opendkim/opendkim.c
@@ -12364,10 +12364,14 @@ mlfi_eoh(SMFICTX *ctx)
12364
12365
if (domainok)
12366
{
12367
- // We must not use strlcpy() here since
12368
- // src and dst overlap.
12369
- char* p2 = dfc->mctx_domain;
12370
- while( (*p2++ = *p++) );
+ /*
+ ** We must not use strlcpy() here since
+ ** src and dst overlap.
+ */
12371
+ char* p2 = (char *) dfc->mctx_domain;
12372
+ while (*p2++ = *p++)
12373
+ {
12374
+ }
12375
break;
12376
}
12377
0 commit comments