The branch master has been updated
       via  a7f9e0a45f5f35a5fe318461aa03b4afe944af74 (commit)
      from  49445f21da5ad436a117d0d4cc6220c4bbbbf8a7 (commit)


- Log -----------------------------------------------------------------
commit a7f9e0a45f5f35a5fe318461aa03b4afe944af74
Author: Matt Caswell <[email protected]>
Date:   Mon May 16 14:56:53 2016 +0100

    Remove an unneccessary check of cipher
    
    Due to short-circuiting we only need to check "cipher" for NULL once.
    
    PR#699
    
    Reviewed-by: Richard Levitte <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 crypto/evp/evp_enc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c
index e02e801..ad64a74 100644
--- a/crypto/evp/evp_enc.c
+++ b/crypto/evp/evp_enc.c
@@ -120,7 +120,7 @@ int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER 
*cipher,
      * reinitialisation, when it may all be unnecessary.
      */
     if (ctx->engine && ctx->cipher
-        && (!cipher || (cipher && (cipher->nid == ctx->cipher->nid))))
+        && (cipher == NULL || cipher->nid == ctx->cipher->nid))
         goto skip_to_init;
 #endif
     if (cipher) {
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to