From 79f83670ae896583a4e722187884d952a144d396 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 5 Sep 2022 12:25:32 +0000 Subject: [PATCH] Don't leak cert in aspa_parse() ok job --- usr.sbin/rpki-client/aspa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.sbin/rpki-client/aspa.c b/usr.sbin/rpki-client/aspa.c index 4085a82017f..8b3e509e9bf 100644 --- a/usr.sbin/rpki-client/aspa.c +++ b/usr.sbin/rpki-client/aspa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aspa.c,v 1.2 2022/09/03 14:40:09 job Exp $ */ +/* $OpenBSD: aspa.c,v 1.3 2022/09/05 12:25:32 tb Exp $ */ /* * Copyright (c) 2022 Job Snijders * Copyright (c) 2022 Theo Buehler @@ -251,6 +251,7 @@ aspa_parse(X509 **x509, const char *fn, const unsigned char *der, size_t len) X509_free(*x509); *x509 = NULL; } + cert_free(cert); free(cms); return p.res; } -- 2.20.1