gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 08/11: Fixed check for URL match to handle URLs with bin


From: gnunet
Subject: [libmicrohttpd] 08/11: Fixed check for URL match to handle URLs with binary zero
Date: Wed, 22 Jun 2022 20:00:14 +0200

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 1efb758b79f36e248dfcef68517e9b4ca482b1b7
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Fri Jun 17 20:14:58 2022 +0300

    Fixed check for URL match to handle URLs with binary zero
---
 src/microhttpd/digestauth.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index f4eecd03..ca66bff0 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -1801,11 +1801,11 @@ digest_auth_check_all_inner (struct MHD_Connection 
*connection,
         *qmark = '\0';
 
       /* Need to unescape URI before comparing with connection->url */
-      daemon->unescape_callback (daemon->unescape_callback_cls,
-                                 connection,
-                                 uri);
-      if (0 != strcmp (uri,
-                       connection->url))
+      uri_len = daemon->unescape_callback (daemon->unescape_callback_cls,
+                                           connection,
+                                           uri);
+      if ((uri_len != connection->url_len) ||
+          (0 != memcmp (uri, connection->url, uri_len)))
       {
 #ifdef HAVE_MESSAGES
         MHD_DLOG (daemon,

-- 
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]