summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-03-14 14:40:18 +0000
committerMatt Caswell <matt@openssl.org>2018-03-15 13:34:57 +0000
commit16a345e5c8b5c1166a5e214a8ee7ebf21d447fbe (patch)
tree32ff71b838473463e2f45d80ce24e46b36b23743 /apps
parentdacdc5fe526d5b838f51711ba602d375159e488a (diff)
Fix a memory leak in the ca application
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5445)
Diffstat (limited to 'apps')
-rw-r--r--apps/ca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 2490710a56..4f9de54921 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -2155,11 +2155,11 @@ static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509,
irow = NULL;
ok = 1;
err:
- if (irow != NULL) {
+ if (ok != 1) {
for (i = 0; i < DB_NUMBER; i++)
OPENSSL_free(row[i]);
- OPENSSL_free(irow);
}
+ OPENSSL_free(irow);
if (CAname != NULL)
X509_NAME_free(CAname);