aboutsummaryrefslogtreecommitdiff
path: root/src/device/device_ledger.hpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-08-27 15:19:47 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-08-27 15:19:47 -0500
commitf68512e9e41fa9447508dedefe6aec94c94cf6df (patch)
tree2761cbe4d28985a59693f74a0e4eacbc998d14d3 /src/device/device_ledger.hpp
parentMerge pull request #5609 (diff)
parentdevice_ledger: fix uninitialized additional_key (diff)
downloadmonero-f68512e9e41fa9447508dedefe6aec94c94cf6df.tar.xz
Merge pull request #5729
7c894fc device_ledger: add paranoid buffer overflow check (moneromooo-monero) f07524b device_ledger: fix uninitialized additional_key (moneromooo-monero)
Diffstat (limited to 'src/device/device_ledger.hpp')
-rw-r--r--src/device/device_ledger.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device_ledger.hpp b/src/device/device_ledger.hpp
index fe9028733..986087128 100644
--- a/src/device/device_ledger.hpp
+++ b/src/device/device_ledger.hpp
@@ -76,7 +76,7 @@ namespace hw {
rct::key AKout;
ABPkeys(const rct::key& A, const rct::key& B, const bool is_subaddr, bool is_subaddress, bool is_change_address, size_t index, const rct::key& P,const rct::key& AK);
ABPkeys(const ABPkeys& keys) ;
- ABPkeys() {index=0;is_subaddress=false;is_subaddress=false;is_change_address=false;}
+ ABPkeys() {index=0;is_subaddress=false;is_change_address=false;additional_key=false;}
ABPkeys &operator=(const ABPkeys &keys);
};