mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-03 20:54:00 +00:00
Remove unneeded NULL pointer checks in LMS tests
Signed-off-by: Raef Coles <raef.coles@arm.com>
This commit is contained in:
parent
29c490db97
commit
1d88ea870f
@ -136,8 +136,7 @@ void lmots_verify_test ( data_t *msg, data_t *sig, data_t *pub_key,
|
||||
}
|
||||
|
||||
exit:
|
||||
if( tmp_sig != NULL )
|
||||
mbedtls_free( tmp_sig );
|
||||
mbedtls_free( tmp_sig );
|
||||
mbedtls_lmots_public_free( &ctx );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
@ -138,8 +138,7 @@ void lms_verify_test ( data_t * msg, data_t * sig, data_t * pub_key,
|
||||
}
|
||||
|
||||
exit:
|
||||
if( tmp_sig != NULL )
|
||||
mbedtls_free( tmp_sig );
|
||||
mbedtls_free( tmp_sig );
|
||||
mbedtls_lms_public_free( &ctx );
|
||||
}
|
||||
/* END_CASE */
|
||||
@ -192,8 +191,7 @@ void lms_import_export_test ( data_t * pub_key, int expected_import_rc )
|
||||
}
|
||||
|
||||
exit:
|
||||
if( exported_pub_key != NULL )
|
||||
mbedtls_free( exported_pub_key );
|
||||
mbedtls_free( exported_pub_key );
|
||||
mbedtls_lms_public_free( &ctx );
|
||||
}
|
||||
/* END_CASE */
|
||||
|
Loading…
x
Reference in New Issue
Block a user