(crypto_select): stop memory leak

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20548 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-04-24 10:19:09 +00:00
parent 8f80e44621
commit a362011014

View File

@@ -1193,9 +1193,11 @@ crypto_select(struct crypto_select_options *opt, int argc, char **argv)
ret = hx509_peer_info_set_cms_algs(context, peer, val,
opt->peer_cmstype_strings.num_strings);
for (i = 0; i < opt->peer_cmstype_strings.num_strings; i++)
free_AlgorithmIdentifier(&val[i]);
free(val);
if (ret)
errx(1, "hx509_peer_info_set_cms_algs");
}
ret = hx509_crypto_select(context, type, NULL, peer, &selected);