From d90e49599b485ccf5bd8575a05d51b09211576b9 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 6 Jun 2018 00:05:47 +0200 Subject: wg: encoding: add missing static array constraints Signed-off-by: Jason A. Donenfeld --- contrib/embeddable-wg-library/wireguard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/embeddable-wg-library') diff --git a/contrib/embeddable-wg-library/wireguard.c b/contrib/embeddable-wg-library/wireguard.c index 560d7ab..c052355 100644 --- a/contrib/embeddable-wg-library/wireguard.c +++ b/contrib/embeddable-wg-library/wireguard.c @@ -1514,7 +1514,7 @@ void wg_free_device(wg_device *dev) free(dev); } -static void encode_base64(char dest[4], const uint8_t src[3]) +static void encode_base64(char dest[static 4], const uint8_t src[static 3]) { const uint8_t input[] = { (src[0] >> 2) & 63, ((src[0] << 4) | (src[1] >> 4)) & 63, ((src[1] << 2) | (src[2] >> 6)) & 63, src[2] & 63 }; unsigned int i; @@ -1539,7 +1539,7 @@ void wg_key_to_base64(wg_key_b64_string base64, const wg_key key) base64[sizeof(wg_key_b64_string) - 1] = '\0'; } -static int decode_base64(const char src[4]) +static int decode_base64(const char src[static 4]) { int val = 0; unsigned int i; -- cgit v1.2.3-59-g8ed1b