From abb665dd000127f9638b3d67e483039b382fed5c Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Thu, 18 Apr 2019 23:52:31 +0300 Subject: [PATCH] test_md5: fixed out of buffer reads/writes --- src/microhttpd/test_md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microhttpd/test_md5.c b/src/microhttpd/test_md5.c index 7622db2f..38c1e8b9 100644 --- a/src/microhttpd/test_md5.c +++ b/src/microhttpd/test_md5.c @@ -62,7 +62,7 @@ static const size_t units1_num = sizeof(data_units1) / sizeof(data_units1[0]); struct bin_with_len { - const uint8_t bin[256]; + const uint8_t bin[512]; const size_t len; };