mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-21 01:27:24 +00:00
psa_util: add variable casting in convert_raw_to_der_single_int()
Signed-off-by: Valerio Setti <[email protected]>
This commit is contained in:
+1
-1
@@ -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. */
|
||||
|
||||
Reference in New Issue
Block a user