1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00

fix uninitialized variable

This commit is contained in:
bolero-MURAKAMI 2013-11-11 10:02:10 +09:00
parent 09bff1e262
commit af24ef48a9

View file

@ -396,8 +396,8 @@ namespace sprout {
std::uint32_t d = h_[3];
std::uint32_t e = h_[4];
for (std::size_t i = 0; i < 80; ++i) {
std::uint32_t f;
std::uint32_t k;
std::uint32_t f = 0;
std::uint32_t k = 0;
if (i<20) {
f = (b & c) | (~b & d);
k = 0x5A827999;