diff options
Diffstat (limited to 'src/common/Cryptography/SessionKeyGenerator.h')
-rw-r--r-- | src/common/Cryptography/SessionKeyGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/Cryptography/SessionKeyGenerator.h b/src/common/Cryptography/SessionKeyGenerator.h index af787358981..144ff00ff56 100644 --- a/src/common/Cryptography/SessionKeyGenerator.h +++ b/src/common/Cryptography/SessionKeyGenerator.h @@ -53,7 +53,9 @@ class SessionKeyGenerator } private: - typename Hash::Digest o0, o1, o2; + typename Hash::Digest o0 = { }; + typename Hash::Digest o1 = { }; + typename Hash::Digest o2 = { }; typename Hash::Digest::const_iterator o0it; }; |