diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-07-03 15:20:42 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-07-03 15:20:42 +0200 |
commit | f449dbe8ebcbfd72894622078372b4711823326f (patch) | |
tree | 8775d0368faee5c1af7481996d33c6e2648dc314 /src/wallet | |
parent | Merge pull request #4035 (diff) | |
parent | wallet2: fix read buffer overflow in import_key_images (diff) | |
download | monero-f449dbe8ebcbfd72894622078372b4711823326f.tar.xz |
Merge pull request #4041
df9d50a8 wallet2: fix read buffer overflow in import_key_images (moneromooo-monero)
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 9255e1912..3a07523be 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -9827,7 +9827,7 @@ uint64_t wallet2::import_key_images(const std::vector<std::pair<crypto::key_imag std::unordered_set<crypto::hash> spent_txids; // For each spent key image, search for a tx in m_transfers that uses it as input. std::vector<size_t> swept_transfers; // If such a spending tx wasn't found in m_transfers, this means the spending tx // was created by sweep_all, so we can't know the spent height and other detailed info. - for(size_t i = 0; i < m_transfers.size(); ++i) + for(size_t i = 0; i < signed_key_images.size(); ++i) { transfer_details &td = m_transfers[i]; uint64_t amount = td.amount(); |