mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-07 13:22:46 +00:00
Fixup: Correct signedness of val local variable
Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
parent
0f4ee418d8
commit
7cdfda12da
@ -950,7 +950,7 @@ int mbedtls_oid_from_numeric_string(mbedtls_asn1_buf *oid,
|
||||
|
||||
const char *str_ptr = oid_str;
|
||||
const char *str_bound = oid_str + size;
|
||||
int val = 0;
|
||||
unsigned int val = 0;
|
||||
size_t encoded_len;
|
||||
unsigned int component1, component2;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user