diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-02-02 16:44:28 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-02-02 16:44:28 +0000 |
commit | 9af6b2d1b820d52340f9b89222cc8b07e5b29bb7 (patch) | |
tree | 494fd48d7853b16355cc1638931910905d0b3f2b | |
parent | simplewallet: double check a new multisig wallet is multisig (diff) | |
download | monero-9af6b2d1b820d52340f9b89222cc8b07e5b29bb7.tar.xz |
ringct: fix infinite loop in unused h2b function
Coverity 146775
-rw-r--r-- | src/ringct/rctTypes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ringct/rctTypes.cpp b/src/ringct/rctTypes.cpp index 1526dcf7c..5650b3ba1 100644 --- a/src/ringct/rctTypes.cpp +++ b/src/ringct/rctTypes.cpp @@ -178,6 +178,7 @@ namespace rct { } while (i < 8 * (j + 1)) { amountb2[i] = 0; + i++; } } } |