diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-03-20T16·46+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-03-20T16·46+0100 |
commit | 20df50d8e15da7b5d39986a4db533d6c41f0786c (patch) | |
tree | 3a57413e932dd166a0b30943924b9692d296930a /src/libutil/hash.cc | |
parent | dc931fe1cd6e426bbb8392872a10f3b308ed008a (diff) | |
parent | 4fc30922cf00d79bd603ac46255fa73a3c2ee565 (diff) |
Merge branch 'darwin-s3-binary-cache-store' of https://github.com/shlevy/nix
Diffstat (limited to 'src/libutil/hash.cc')
-rw-r--r-- | src/libutil/hash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index f447c80c5d81..a8bbcf8c1754 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -104,7 +104,7 @@ Hash parseHash(HashType ht, const string & s) string s2(s, i * 2, 2); if (!isxdigit(s2[0]) || !isxdigit(s2[1])) throw BadHash(format("invalid hash ‘%1%’") % s); - std::istringstream str(s2); + istringstream_nocopy str(s2); int n; str >> std::hex >> n; hash.hash[i] = n; |