Skip to content

Commit

Permalink
Merge pull request #4025 from Rohde-Schwarz/fix/x448-warning
Browse files Browse the repository at this point in the history
Fix curve448 compiler warning
  • Loading branch information
FAlbertDev committed Apr 22, 2024
2 parents 5e6f52c + 3269c9c commit bf86f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/pubkey/curve448/curve448_scalar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ Scalar448 Scalar448::operator+(const Scalar448& other) const {

Scalar448 Scalar448::operator*(const Scalar448& other) const {
std::array<word, WORDS_REDUCE_SZ> product = {0};
std::array<word, WORDS_REDUCE_SZ> ws;
std::array<word, WORDS_REDUCE_SZ> ws = {0};
bigint_mul(product.data(),
product.size(),
m_scalar_words.data(),
Expand Down

0 comments on commit bf86f1a

Please sign in to comment.