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
1 changed files with 1 additions and 1 deletions
|
@ -950,7 +950,7 @@ int mbedtls_oid_from_numeric_string(mbedtls_asn1_buf *oid,
|
||||||
|
|
||||||
const char *str_ptr = oid_str;
|
const char *str_ptr = oid_str;
|
||||||
const char *str_bound = oid_str + size;
|
const char *str_bound = oid_str + size;
|
||||||
int val = 0;
|
unsigned int val = 0;
|
||||||
size_t encoded_len;
|
size_t encoded_len;
|
||||||
unsigned int component1, component2;
|
unsigned int component1, component2;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue