gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 07/13: Fixed uninitialized value used in assert


From: gnunet
Subject: [libmicrohttpd] 07/13: Fixed uninitialized value used in assert
Date: Mon, 16 May 2022 20:14:56 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 76069494b411c4747c857953a874a51d46243bcd
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Mon May 16 17:44:39 2022 +0300

    Fixed uninitialized value used in assert
---
 src/microhttpd/connection.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 2ff4c76f..9f05aa9f 100644
--- 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
     {

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]