diff options
author | Vaci Koblizek <vaci.koblizek@auguration.com> | 2023-03-29 10:54:27 +0100 |
---|---|---|
committer | Vaci Koblizek <vaci.koblizek@auguration.com> | 2023-03-29 10:54:27 +0100 |
commit | a4dd87a2b303af107e0671ce6e8873b5a2d90b3e (patch) | |
tree | f328c01d302a3473dd562a3aefff18f61bdfabd5 /src/libutil/hash.cc | |
parent | ccf7ce26fe6207d7a648715a45985379f772931f (diff) |
avoid a string copy in printHash16
Diffstat (limited to 'src/libutil/hash.cc')
-rw-r--r-- | src/libutil/hash.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 84832c4ad..5735e4715 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -71,12 +71,13 @@ const std::string base16Chars = "0123456789abcdef"; static std::string printHash16(const Hash & hash) { - char buf[hash.hashSize * 2]; + std::string buf; + buf.reserve(hash.hashSize * 2); for (unsigned int i = 0; i < hash.hashSize; i++) { - buf[i * 2] = base16Chars[hash.hash[i] >> 4]; - buf[i * 2 + 1] = base16Chars[hash.hash[i] & 0x0f]; + buf.push_back(base16Chars[hash.hash[i] >> 4]); + buf.push_back(base16Chars[hash.hash[i] & 0x0f]); } - return std::string(buf, hash.hashSize * 2); + return buf; } |