From 746fd7d74db4b4802bc55894df0d8e5ca24ff9ba Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Tue, 25 Mar 2014 16:16:44 -0600 Subject: [PATCH] increase MCAPI CRYPT_AES_CTX to hold Aes --- mcapi/crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcapi/crypto.h b/mcapi/crypto.h index cff24bbdc..c47f78dfd 100644 --- a/mcapi/crypto.h +++ b/mcapi/crypto.h @@ -163,7 +163,7 @@ enum { /* AES */ typedef struct CRYPT_AES_CTX { - int holder[69]; /* big enough to hold internal, but check on init */ + int holder[70]; /* big enough to hold internal, but check on init */ } CRYPT_AES_CTX; /* key */