Add 'exit' label and variable initialization to relevant test suite functions

This commit is contained in:
Paul Bakker 2014-07-10 15:26:12 +02:00
parent 318d0fe844
commit bd51b262d1
31 changed files with 235 additions and 28 deletions

View file

@ -33,6 +33,7 @@ void arc4_crypt( char *hex_src_string, char *hex_key_string,
TEST_ASSERT( strcmp( (char *) dst_hexstr, hex_dst_string ) == 0 );
exit:
arc4_free( &ctx );
}
/* END_CASE */