libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit abb665dd000127f9638b3d67e483039b382fed5c
parent 713e7b76ea0a791b0aa9e8c450658076a4f8233f
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Thu, 18 Apr 2019 23:52:31 +0300

test_md5: fixed out of buffer reads/writes

Diffstat:
Msrc/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 @@ -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; };