Fix uninitialized warning in build with GCC.

This commit is contained in:
John Preston 2023-09-22 09:02:26 +04:00
parent 277fe540dc
commit 8d00d93949
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ private:
MTPint128 nonce, server_nonce;
// 32 bytes new_nonce + 1 check byte + 8 bytes of auth_key_aux_hash.
bytes::array<41> new_nonce_buf;
bytes::array<41> new_nonce_buf{};
MTPint256 &new_nonce;
MTPlong &auth_key_aux_hash;