diff options
author | Matt Caswell <matt@openssl.org> | 2018-03-14 14:32:48 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-03-15 12:51:34 +0000 |
commit | 01985122ae2b144cdd3a2061640e76bff491dc7f (patch) | |
tree | 26eea063a3994b3993541f5e07a47e43da385853 /apps/ca.c | |
parent | 5af88441f4fb1951a0672c0c0e1979cd44acdb69 (diff) | |
download | openssl-new-01985122ae2b144cdd3a2061640e76bff491dc7f.tar.gz |
Fix a memory leak in the ca application
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5444)
Diffstat (limited to 'apps/ca.c')
-rw-r--r-- | apps/ca.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1861,11 +1861,11 @@ static int do_body(X509 **xret, EVP_PKEY *pkey, X509 *x509, irow = NULL; ok = 1; end: - if (irow != NULL) { + if (ok != 1) { for (i = 0; i < DB_NUMBER; i++) OPENSSL_free(row[i]); - OPENSSL_free(irow); } + OPENSSL_free(irow); X509_NAME_free(CAname); X509_NAME_free(subject); |