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:
0b12fa7
)
Err isn't always malloc failure.
author
Dr. Stephen Henson
<steve@openssl.org>
Sat, 1 Aug 2015 14:37:01 +0000
(15:37 +0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Wed, 12 Aug 2015 13:07:06 +0000
(14:07 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
(cherry picked from commit
a187e08d856690b5c1da3184d0ff560d572f893b
)
Conflicts:
crypto/cms/cms_smime.c
crypto/cms/cms_smime.c
patch
|
blob
|
history
diff --git
a/crypto/cms/cms_smime.c
b/crypto/cms/cms_smime.c
index 5522a376acb6ecc624e5217e46bd07871798557e..07e3472e1079a7c11a7dab685ddf50b79e817021 100644
(file)
--- a/
crypto/cms/cms_smime.c
+++ b/
crypto/cms/cms_smime.c
@@
-754,7
+754,7
@@
int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont, unsigned int flags)
BIO *cmsbio;
int ret = 0;
if (!(cmsbio = CMS_dataInit(cms, dcont))) {
- CMSerr(CMS_F_CMS_FINAL,
ERR_R_MALLOC_FAILURE
);
+ CMSerr(CMS_F_CMS_FINAL,
CMS_R_CMS_LIB
);
return 0;
}