keyring.cpp: fix std::vector access violation

Signed-off-by: Tom Li <tomli@tomli.me>
This commit is contained in:
Tom Li 2019-01-04 01:50:17 +08:00
parent 7021f6c734
commit f7ae29ccc2
No known key found for this signature in database
GPG key ID: FAD3EB05E88E8D6D

View file

@ -43,8 +43,8 @@ std::string keyring::get_keyid (const std::string&pubkey)
cube256hash hf; cube256hash hf;
std::vector<byte> tmp = std::vector<byte> tmp =
hf (std::vector<byte> hf (std::vector<byte>
(&pubkey[0], (pubkey.data(),
&pubkey[pubkey.length()])); pubkey.data() + pubkey.length()));
r.resize (tmp.size() * 2, ' '); r.resize (tmp.size() * 2, ' ');
for (size_t i = 0; i < tmp.size(); ++i) { for (size_t i = 0; i < tmp.size(); ++i) {