File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 15
15
* Remove a duplicate #include in a sample program. Fixed by Masashi Honma #2326.
16
16
* Remove the mbedtls namespacing from the header file, to fix a "file not found"
17
17
build error. Fixed by Haijun Gu #2319.
18
+ * Fix signed-to-unsigned integer conversion warning
19
+ in X.509 module. Fixes #2212.
18
20
19
21
Changes
20
22
* Include configuration file in all header files that use configuration,
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ static void x509_crt_verify_chain_reset(
368
368
for ( i = 0 ; i < MBEDTLS_X509_MAX_VERIFY_CHAIN_SIZE ; i ++ )
369
369
{
370
370
ver_chain -> items [i ].crt = NULL ;
371
- ver_chain -> items [i ].flags = -1 ;
371
+ ver_chain -> items [i ].flags = ( uint32_t ) -1 ;
372
372
}
373
373
374
374
ver_chain -> len = 0 ;
You can’t perform that action at this time.
0 commit comments