projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ff785f
)
Fix 'openssl passwd' with arguments -1 or -apr1
author
Richard Levitte
<levitte@openssl.org>
Tue, 13 Sep 2016 20:48:35 +0000
(22:48 +0200)
committer
Richard Levitte
<richard@levitte.org>
Tue, 13 Sep 2016 22:31:26 +0000
(
00:31
+0200)
RT#4674
Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit
9f9f962d96425ed741569460791eee0280fcf942
)
apps/passwd.c
patch
|
blob
|
history
diff --git
a/apps/passwd.c
b/apps/passwd.c
index e2c90960e5409d0e6280fa0b6a2bf06afce7eaf6..a45245cd7ffb8f78cd1f37f13c371359676c012c 100644
(file)
--- 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