Fix memory leak in PKCS#5 test suite

This commit is contained in:
Manuel Pégourié-Gonnard 2014-11-17 11:56:08 +01:00
parent 3c17460a1f
commit 309c798b2b

View File

@ -35,5 +35,7 @@ pbkdf2_hmac:hash:hex_password_string:hex_salt_string:it_cnt:key_len:result_key_s
hexify( dst_str, key, {key_len} );
TEST_ASSERT( strcmp( (char *) dst_str, {result_key_string} ) == 0 );
md_free_ctx( &ctx );
}
END_CASE