[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Rich Salz rsalz at openssl.org
Thu Sep 22 12:57:38 UTC 2016


The branch OpenSSL_1_0_2-stable has been updated
       via  581215a519c66db7255ea360ed25bb00033ccd52 (commit)
      from  9d264d11a93413d2724b7c8c873e56b2ddd8c53f (commit)


- Log -----------------------------------------------------------------
commit 581215a519c66db7255ea360ed25bb00033ccd52
Author: Rich Salz <rsalz at openssl.org>
Date:   Thu Sep 22 08:47:45 2016 -0400

    Fix typo introduced by a03f81f4
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

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

diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
index 65a74df..2a2b95c 100644
--- a/crypto/engine/eng_cryptodev.c
+++ b/crypto/engine/eng_cryptodev.c
@@ -939,7 +939,7 @@ static int cryptodev_digest_copy(EVP_MD_CTX *to, const EVP_MD_CTX *from)
     if (fstate->mac_len != 0) {
         if (fstate->mac_data != NULL) {
             dstate->mac_data = OPENSSL_malloc(fstate->mac_len);
-            if (dstate->ac_data == NULL) {
+            if (dstate->mac_data == NULL) {
                 printf("cryptodev_digest_init: malloc failed\n");
                 return 0;
             }


More information about the openssl-commits mailing list