summaryrefslogtreecommitdiff
path: root/vendor/github.com/google/uuid/hash.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-15 08:43:27 -0500
committerGitHub <noreply@github.com>2021-01-15 08:43:27 -0500
commit3ceef004e3848d5fbddcf084c0db3f1ebe789312 (patch)
tree207854dc2bd119e9f046bdb48bd964359b301afb /vendor/github.com/google/uuid/hash.go
parent82462aca7f7afa4310a4fc855a0c375d0ea0ef6e (diff)
parent3ac930f00280d5a6f7ce4e215f4ad574d557da7c (diff)
downloadpodman-3ceef004e3848d5fbddcf084c0db3f1ebe789312.tar.gz
podman-3ceef004e3848d5fbddcf084c0db3f1ebe789312.tar.bz2
podman-3ceef004e3848d5fbddcf084c0db3f1ebe789312.zip
Merge pull request #8981 from containers/dependabot/go_modules/github.com/google/uuid-1.1.5
Bump github.com/google/uuid from 1.1.4 to 1.1.5
Diffstat (limited to 'vendor/github.com/google/uuid/hash.go')
-rw-r--r--vendor/github.com/google/uuid/hash.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/google/uuid/hash.go b/vendor/github.com/google/uuid/hash.go
index b17461631..b404f4bec 100644
--- a/vendor/github.com/google/uuid/hash.go
+++ b/vendor/github.com/google/uuid/hash.go
@@ -26,8 +26,8 @@ var (
// NewMD5 and NewSHA1.
func NewHash(h hash.Hash, space UUID, data []byte, version int) UUID {
h.Reset()
- h.Write(space[:])
- h.Write(data)
+ h.Write(space[:]) //nolint:errcheck
+ h.Write(data) //nolint:errcheck
s := h.Sum(nil)
var uuid UUID
copy(uuid[:], s)