From e75fddd49eaebe0cd3d46f4a35f578f41bfc7c2b Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 28 Dec 2016 16:31:41 -0800 Subject: [PATCH] =?UTF-8?q?Moving=20macType=20below=20hash=20in=20WOLFSSL?= =?UTF-8?q?=5FEVP=5FMD=5FCTX=20(instead=20of=20ALIGN16)=20to=20resolve=201?= =?UTF-8?q?6-bit=20alignment=20crash=20I=20was=20seeing=20on=20CentOS=20du?= =?UTF-8?q?e=20to=20size=20change=20of=20=E2=80=9CWOLFSSL=5FHasher?= =?UTF-8?q?=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wolfssl/openssl/evp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/openssl/evp.h b/wolfssl/openssl/evp.h index a72027f9b..e13d1fa4f 100644 --- a/wolfssl/openssl/evp.h +++ b/wolfssl/openssl/evp.h @@ -101,8 +101,8 @@ typedef union { typedef struct WOLFSSL_EVP_MD_CTX { + WOLFSSL_Hasher hash; unsigned char macType; - ALIGN16 WOLFSSL_Hasher hash; } WOLFSSL_EVP_MD_CTX;