From: Dr. Stephen Henson Date: Thu, 8 Mar 2012 14:10:23 +0000 (+0000) Subject: check return value of BIO_write in PKCS7_decrypt X-Git-Tag: master-post-reformat~1914 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=34b61f5a25a4c408dcc44a6ac44bc0730b30c1d0;p=oweals%2Fopenssl.git check return value of BIO_write in PKCS7_decrypt --- diff --git a/crypto/pkcs7/pk7_smime.c b/crypto/pkcs7/pk7_smime.c index 0ed0feae5d..a5104f8d05 100644 --- a/crypto/pkcs7/pk7_smime.c +++ b/crypto/pkcs7/pk7_smime.c @@ -594,7 +594,11 @@ int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags) break; } - BIO_write(data, buf, i); + if (BIO_write(data, buf, i) != i) + { + ret = 0; + break; + } } BIO_free_all(tmpmem); return ret;