diff options
Diffstat (limited to 'apps/apps.c')
-rw-r--r-- | apps/apps.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/apps.c b/apps/apps.c index a4b77e13e3ad..f9fe9a2af1c5 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -2052,7 +2052,7 @@ X509_NAME *parse_name(char *subject, long chtype, int multirdn) X509_NAME *n = NULL; int nid; - if (!buf || !ne_types || !ne_values) + if (!buf || !ne_types || !ne_values || !mval) { BIO_printf(bio_err, "malloc error\n"); goto error; @@ -2156,6 +2156,7 @@ X509_NAME *parse_name(char *subject, long chtype, int multirdn) OPENSSL_free(ne_values); OPENSSL_free(ne_types); OPENSSL_free(buf); + OPENSSL_free(mval); return n; error: @@ -2164,6 +2165,8 @@ error: OPENSSL_free(ne_values); if (ne_types) OPENSSL_free(ne_types); + if (mval) + OPENSSL_free(mval); if (buf) OPENSSL_free(buf); return NULL; |