mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 06:07:06 +02:00
Fix uninitialized warning in build with GCC.
This commit is contained in:
parent
277fe540dc
commit
8d00d93949
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue