aboutsummaryrefslogtreecommitdiff
path: root/contrib/wpa/src/crypto/sha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/wpa/src/crypto/sha256.c')
-rw-r--r--contrib/wpa/src/crypto/sha256.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/wpa/src/crypto/sha256.c b/contrib/wpa/src/crypto/sha256.c
index b55e976f37b0..17af964ad049 100644
--- a/contrib/wpa/src/crypto/sha256.c
+++ b/contrib/wpa/src/crypto/sha256.c
@@ -28,10 +28,10 @@ int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
{
unsigned char k_pad[64]; /* padding - key XORd with ipad/opad */
unsigned char tk[32];
- const u8 *_addr[6];
- size_t _len[6], i;
+ const u8 *_addr[11];
+ size_t _len[11], i;
- if (num_elem > 5) {
+ if (num_elem > 10) {
/*
* Fixed limit on the number of fragments to avoid having to
* allocate memory (which could fail).