lib/hx509: revoke_print addrof to hx509_revoke_free
1a793c04fa
("lib/hx509: revoke_print free revoke_context") forgot to pass
the address of 'revoke_ctx' to hx509_revoke_free().
Change-Id: I430a72a4dc7bce7099fc02bbe1feae625304a53a
This commit is contained in:
@@ -1267,7 +1267,7 @@ revoke_print(struct revoke_print_options *opt, int argc, char **argv)
|
|||||||
if (ret)
|
if (ret)
|
||||||
warnx("hx509_revoke_print: %d", ret);
|
warnx("hx509_revoke_print: %d", ret);
|
||||||
|
|
||||||
hx509_revoke_free(revoke_ctx);
|
hx509_revoke_free(&revoke_ctx);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user