mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 14:28:31 +00:00
Fix build with gcc -O -Wall
Fix warnings from gcc -O -Wall about `ret` used uninitialized in CMAC selftest auxiliary functions. The variable was indeed uninitialized if the function was called with num_tests=0 (which never happens).
This commit is contained in:
parent
0afe624fff
commit
df761d5a6b
1 changed files with 2 additions and 0 deletions
|
@ -832,6 +832,7 @@ static int cmac_test_subkeys( int verbose,
|
|||
mbedtls_cipher_free( &ctx );
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
goto exit;
|
||||
|
||||
cleanup:
|
||||
|
@ -887,6 +888,7 @@ static int cmac_test_wth_cipher( int verbose,
|
|||
if( verbose != 0 )
|
||||
mbedtls_printf( "passed\n" );
|
||||
}
|
||||
ret = 0;
|
||||
|
||||
exit:
|
||||
return( ret );
|
||||
|
|
Loading…
Reference in a new issue