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:
Jeffrey Altman
2022-01-16 22:05:38 -05:00
parent 603ee4d65d
commit 53e0b5448e

View File

@@ -1267,7 +1267,7 @@ revoke_print(struct revoke_print_options *opt, int argc, char **argv)
if (ret)
warnx("hx509_revoke_print: %d", ret);
hx509_revoke_free(revoke_ctx);
hx509_revoke_free(&revoke_ctx);
return ret;
}