diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c index 41a016df..6094ac7d 100644 --- a/src/microhttpd/digestauth.c +++ b/src/microhttpd/digestauth.c @@ -929,6 +929,7 @@ calculate_nonce (uint64_t nonce_time, const char *rnd, size_t rnd_size, const char *uri, + size_t uri_len, const char *realm, size_t realm_len, struct DigestAlgorithm *da, @@ -969,7 +970,7 @@ calculate_nonce (uint64_t nonce_time, 1); digest_update (da, (const unsigned char *) uri, - strlen (uri)); + uri_len); digest_update (da, (const unsigned char *) ":", 1); @@ -1079,6 +1080,7 @@ calculate_add_nonce (struct MHD_Connection *const connection, daemon->digest_auth_random, daemon->digest_auth_rand_size, connection->url, + connection->url_len, realm, realm_len, da, @@ -1590,6 +1592,7 @@ digest_auth_check_all_inner (struct MHD_Connection *connection, daemon->digest_auth_random, daemon->digest_auth_rand_size, connection->url, + connection->url_len, realm, realm_len, da,