forked from wolfSSL/wolfssl
cast return from XSTRLEN
This commit is contained in:
@ -4288,7 +4288,7 @@ static int GetName(DecodedCert* cert, int nameType)
|
|||||||
}
|
}
|
||||||
if (copy && !tooBig) {
|
if (copy && !tooBig) {
|
||||||
XMEMCPY(&full[idx], copy, XSTRLEN(copy));
|
XMEMCPY(&full[idx], copy, XSTRLEN(copy));
|
||||||
idx += XSTRLEN(copy);
|
idx += (word32)XSTRLEN(copy);
|
||||||
XMEMCPY(&full[idx], &cert->source[cert->srcIdx], strLen);
|
XMEMCPY(&full[idx], &cert->source[cert->srcIdx], strLen);
|
||||||
idx += strLen;
|
idx += strLen;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user