From f7ae29ccc2635b443cac3d19c465c247d502bfff Mon Sep 17 00:00:00 2001 From: Tom Li Date: Fri, 4 Jan 2019 01:50:17 +0800 Subject: [PATCH] keyring.cpp: fix std::vector access violation Signed-off-by: Tom Li --- src/keyring.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keyring.cpp b/src/keyring.cpp index de0d30c..bc7be9f 100644 --- a/src/keyring.cpp +++ b/src/keyring.cpp @@ -43,8 +43,8 @@ std::string keyring::get_keyid (const std::string&pubkey) cube256hash hf; std::vector tmp = hf (std::vector - (&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) {