commit 76069494b411c4747c857953a874a51d46243bcd parent 280aceef91cbd1181eabbe98efdd673a1f769d7c Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Mon, 16 May 2022 17:44:39 +0300 Fixed uninitialized value used in assert Diffstat:
| M | src/microhttpd/connection.c | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -2973,6 +2973,9 @@ parse_cookies_string_lenient (char *str, { value_start = 0; value_len = 0; +#ifdef _DEBUG + val_quoted = false; /* This assignment used in assert */ +#endif } else {