summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-09-13 22:48:35 +0200
committerRichard Levitte <richard@levitte.org>2016-09-14 00:31:26 +0200
commit9fd47a037079f33ca3b71c32fb4a86397e0bfcd1 (patch)
tree71bc7cd3b3fe7aaa02c6ec37dbb4eca37cd03a7c /apps
parent8ff785f4eb4ff06213fbf68da389132e31a9e4af (diff)
Fix 'openssl passwd' with arguments -1 or -apr1
RT#4674 Reviewed-by: Rich Salz <rsalz@openssl.org> (cherry picked from commit 9f9f962d96425ed741569460791eee0280fcf942)
Diffstat (limited to 'apps')
-rw-r--r--apps/passwd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/passwd.c b/apps/passwd.c
index e2c90960e5..a45245cd7f 100644
--- a/apps/passwd.c
+++ b/apps/passwd.c
@@ -319,6 +319,7 @@ static char *md5crypt(const char *passwd, const char *magic, const char *salt)
|| !EVP_DigestUpdate(md, magic, magic_len)
|| !EVP_DigestUpdate(md, "$", 1)
|| !EVP_DigestUpdate(md, salt_out, salt_len))
+ goto err;
md2 = EVP_MD_CTX_new();
if (md2 == NULL