mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-09-03 07:56:03 +00:00
Fix uninitialized warning in build with GCC.
This commit is contained in:
@@ -69,7 +69,7 @@ private:
|
|||||||
MTPint128 nonce, server_nonce;
|
MTPint128 nonce, server_nonce;
|
||||||
|
|
||||||
// 32 bytes new_nonce + 1 check byte + 8 bytes of auth_key_aux_hash.
|
// 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;
|
MTPint256 &new_nonce;
|
||||||
MTPlong &auth_key_aux_hash;
|
MTPlong &auth_key_aux_hash;
|
||||||
|
Reference in New Issue
Block a user