2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

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

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;