Remove warning about use of uninitialised variable
authorRichard Levitte <levitte@openssl.org>
Sun, 6 Sep 2015 10:56:33 +0000 (12:56 +0200)
committerRichard Levitte <levitte@openssl.org>
Sun, 6 Sep 2015 10:56:33 +0000 (12:56 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
crypto/pkcs7/pk7_smime.c

index 6522a5165045d3d13ad1298f285710ee9b4ce50f..16df4eacd68411ed1e450d0891a9d86c47bb9cbb 100644 (file)
@@ -513,7 +513,7 @@ PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher,
 int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags)
 {
     BIO *tmpmem;
-    int ret, i;
+    int ret = 0, i;
     char *buf = NULL;
 
     if (!p7) {
@@ -575,7 +575,6 @@ int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags)
             break;
         }
         if (BIO_write(data, buf, i) != i) {
-            ret = 0;
             break;
         }
     }