matrixssl: clean up GCC 15 build warnings
This commit is contained in:
@@ -6828,7 +6828,7 @@ static int nowDoCvPkaInnerECDSA(ssl_t *ssl, pkaAfter_t *pka,
|
||||
{
|
||||
return PS_MEM_FAIL;
|
||||
}
|
||||
tmpEcdsa[0] = (sigLen << 8) & 0xff00;
|
||||
tmpEcdsa[0] = (sigLen >> 8) & 0xff;
|
||||
tmpEcdsa[1] = sigLen & 0xff;
|
||||
Memcpy(&tmpEcdsa[2], sig, sigLen);
|
||||
len = sigLen + 2;
|
||||
|
||||
Reference in New Issue
Block a user