From 1a793c04fad124b0be07d90ba2e6ab3b74da0bc5 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Sun, 16 Jan 2022 21:53:06 -0500 Subject: [PATCH] lib/hx509: revoke_print free revoke_context call hx509_revoke_free() to free the context. Change-Id: I2f4439a848011cc0ab46f2802f5e4871baba348f --- lib/hx509/hxtool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/hx509/hxtool.c b/lib/hx509/hxtool.c index 03e6819bd..d8f9dab00 100644 --- a/lib/hx509/hxtool.c +++ b/lib/hx509/hxtool.c @@ -1267,6 +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); return ret; }