aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/cms/cms_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/cms/cms_io.c')
-rw-r--r--crypto/cms/cms_io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/cms/cms_io.c b/crypto/cms/cms_io.c
index dab70af73c..f5d70e84ce 100644
--- a/crypto/cms/cms_io.c
+++ b/crypto/cms/cms_io.c
@@ -18,6 +18,7 @@
int CMS_stream(unsigned char ***boundary, CMS_ContentInfo *cms)
{
ASN1_OCTET_STRING **pos;
+
pos = CMS_get0_content(cms);
if (pos == NULL)
return 0;
@@ -29,7 +30,7 @@ int CMS_stream(unsigned char ***boundary, CMS_ContentInfo *cms)
*boundary = &(*pos)->data;
return 1;
}
- ERR_raise(ERR_LIB_CMS, ERR_R_MALLOC_FAILURE);
+ ERR_raise(ERR_LIB_CMS, ERR_R_CMS_LIB);
return 0;
}