gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 04/19: digest_auth_check(): reduced scope of one-time va


From: gnunet
Subject: [libmicrohttpd] 04/19: digest_auth_check(): reduced scope of one-time variable
Date: Thu, 28 Jul 2022 06:26:08 +0200

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit c024f7c8adeb98604c64a23cc30bf36e2df1f934
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu Jul 21 15:16:02 2022 +0300

    digest_auth_check(): reduced scope of one-time variable
---
 src/microhttpd/digestauth.c | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 4bb67f11..e8983d62 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -1933,7 +1933,6 @@ digest_auth_check_all_inner (struct MHD_Connection 
*connection,
   const char *hentity = NULL; /* "auth-int" is not supported */
 #endif
   uint64_t nonce_time;
-  uint64_t t;
   uint64_t nci;
   const struct MHD_RqDAuth *params;
   /**
@@ -2112,14 +2111,20 @@ digest_auth_check_all_inner (struct MHD_Connection 
*connection,
 #endif
     return MHD_DAUTH_NONCE_WRONG;
   }
-  t = MHD_monotonic_msec_counter ();
-  /*
-   * First level vetting for the nonce validity: if the timestamp
-   * attached to the nonce exceeds `nonce_timeout', then the nonce is
-   * invalid.
-   */
-  if (TRIM_TO_TIMESTAMP (t - nonce_time) > (nonce_timeout * 1000))
-    return MHD_DAUTH_NONCE_STALE; /* too old */
+
+  if (1)
+  {
+    uint64_t t;
+
+    t = MHD_monotonic_msec_counter ();
+    /*
+     * First level vetting for the nonce validity: if the timestamp
+     * attached to the nonce exceeds `nonce_timeout', then the nonce is
+     * invalid.
+     */
+    if (TRIM_TO_TIMESTAMP (t - nonce_time) > (nonce_timeout * 1000))
+      return MHD_DAUTH_NONCE_STALE; /* too old */
+  }
   if (1)
   {
     enum MHD_CheckNonceNC_ nonce_nc_check;

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