1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Use goto exit instead of direct return

Signed-off-by: gabor-mezei-arm <gabor.mezei@arm.com>
This commit is contained in:
gabor-mezei-arm
2020-04-28 10:40:30 +02:00
parent a9eecf1b19
commit 785958577e
2 changed files with 3 additions and 3 deletions

View File

@ -2392,7 +2392,7 @@ int main( int argc, char *argv[] )
{
opt.query_config_mode = 1;
query_config_ret = query_config( q );
mbedtls_exit( ret );
goto exit;
}
else if( strcmp( p, "serialize") == 0 )
{