aboutsummaryrefslogtreecommitdiff
path: root/src/common/Cryptography/CryptoHash.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-08-03 18:57:16 +0200
committerShauren <shauren.trinity@gmail.com>2020-08-03 18:57:16 +0200
commitd056f24c52ee1d4a136e7a7888e5629a71290e21 (patch)
tree7663d59803ad378642978f5cd3dccbd0d82da4c8 /src/common/Cryptography/CryptoHash.h
parent38de6d330711f0439d311a3c493cc82eaf9d09db (diff)
Core/Crypto: Initialize class member variables after crypto refactor
Diffstat (limited to 'src/common/Cryptography/CryptoHash.h')
-rw-r--r--src/common/Cryptography/CryptoHash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Cryptography/CryptoHash.h b/src/common/Cryptography/CryptoHash.h
index 8c9825ce2d8..56af9740c04 100644
--- a/src/common/Cryptography/CryptoHash.h
+++ b/src/common/Cryptography/CryptoHash.h
@@ -106,7 +106,7 @@ namespace Trinity::Impl
private:
EVP_MD_CTX* _ctx;
- Digest _digest;
+ Digest _digest = { };
};
}