keyring.cpp: fix std::vector access violation
Signed-off-by: Tom Li <tomli@tomli.me>
This commit is contained in:
parent
7021f6c734
commit
f7ae29ccc2
|
@ -43,8 +43,8 @@ std::string keyring::get_keyid (const std::string&pubkey)
|
|||
cube256hash hf;
|
||||
std::vector<byte> tmp =
|
||||
hf (std::vector<byte>
|
||||
(&pubkey[0],
|
||||
&pubkey[pubkey.length()]));
|
||||
(pubkey.data(),
|
||||
pubkey.data() + pubkey.length()));
|
||||
|
||||
r.resize (tmp.size() * 2, ' ');
|
||||
for (size_t i = 0; i < tmp.size(); ++i) {
|
||||
|
|
Loading…
Reference in a new issue