psa_util: add variable casting in convert_raw_to_der_single_int()

Signed-off-by: Valerio Setti <[email protected]>
This commit is contained in:
Valerio Setti
2024-01-24 16:26:35 +01:00
parent 86bae52c55
commit a7b83a04ee
+1 -1
View File
@@ -364,7 +364,7 @@ static int convert_raw_to_der_single_int(const unsigned char *raw_buf, size_t ra
unsigned char *der_buf_end)
{
unsigned char *p = der_buf_end;
int len = raw_len;
int len = (int) raw_len;
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
/* Copy the raw coordinate to the end of der_buf. */