From 846290dac53ef839761be54d8ce87db11f4758dc Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 14 Aug 2018 17:02:12 +0300 Subject: [PATCH] Fix previous commit. GitOrigin-RevId: 4dc50e35d0b5e5a42da9e77716b8fd0cf57367a4 --- tdutils/td/utils/crypto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdutils/td/utils/crypto.cpp b/tdutils/td/utils/crypto.cpp index 2afdd02a..edad176a 100644 --- a/tdutils/td/utils/crypto.cpp +++ b/tdutils/td/utils/crypto.cpp @@ -423,7 +423,7 @@ static void pbkdf2_impl(Slice password, Slice salt, int iteration_count, Mutable HMAC_CTX_cleanup(&ctx); if (iteration_count > 1) { - CHECK(hash_size <= 64) + CHECK(hash_size <= 64); unsigned char buf[64]; std::copy(dest.ubegin(), dest.uend(), buf); for (int iter = 1; iter < iteration_count; iter++) {