From e7b44c3295b904ee12ed4192ea4feff4ea4c6226 Mon Sep 17 00:00:00 2001 From: you Date: Thu, 4 Jan 2018 14:25:20 +0100 Subject: [PATCH] Fix Wstringop-overflow warning from util/srp.cpp (#6855) * Fix Wstringop-overflow warning from util/srp.cpp --- src/util/srp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/util/srp.cpp b/src/util/srp.cpp index 4c1a772e..9aed9eb0 100644 --- a/src/util/srp.cpp +++ b/src/util/srp.cpp @@ -39,6 +39,7 @@ #include #include #include +#include #include @@ -418,7 +419,7 @@ static SRP_Result H_nn( } static SRP_Result H_ns(mpz_t result, SRP_HashAlgorithm alg, const unsigned char *n, - size_t len_n, const unsigned char *bytes, size_t len_bytes) + size_t len_n, const unsigned char *bytes, uint32_t len_bytes) { unsigned char buff[SHA512_DIGEST_LENGTH]; size_t nbytes = len_n + len_bytes;