diff options
author | dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> | 2020-08-31 08:17:19 +0000 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-08-31 05:13:54 -0400 |
commit | cf147050d40296d15ec92cb97b55351cc236735e (patch) | |
tree | e8195a54c89a4aa0d5a98654d5e9bfbbba594bbe /vendor/github.com/google/uuid/version1.go | |
parent | 575b3a3d8ab4f1f72d58b71aa4d534eca3a5d8f9 (diff) | |
download | podman-cf147050d40296d15ec92cb97b55351cc236735e.tar.gz podman-cf147050d40296d15ec92cb97b55351cc236735e.tar.bz2 podman-cf147050d40296d15ec92cb97b55351cc236735e.zip |
Bump github.com/google/uuid from 1.1.1 to 1.1.2
Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/google/uuid/releases)
- [Commits](https://github.com/google/uuid/compare/v1.1.1...v1.1.2)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/google/uuid/version1.go')
-rw-r--r-- | vendor/github.com/google/uuid/version1.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vendor/github.com/google/uuid/version1.go b/vendor/github.com/google/uuid/version1.go index 199a1ac65..463109629 100644 --- a/vendor/github.com/google/uuid/version1.go +++ b/vendor/github.com/google/uuid/version1.go @@ -17,12 +17,6 @@ import ( // // In most cases, New should be used. func NewUUID() (UUID, error) { - nodeMu.Lock() - if nodeID == zeroID { - setNodeInterface("") - } - nodeMu.Unlock() - var uuid UUID now, seq, err := GetTime() if err != nil { @@ -38,7 +32,13 @@ func NewUUID() (UUID, error) { binary.BigEndian.PutUint16(uuid[4:], timeMid) binary.BigEndian.PutUint16(uuid[6:], timeHi) binary.BigEndian.PutUint16(uuid[8:], seq) + + nodeMu.Lock() + if nodeID == zeroID { + setNodeInterface("") + } copy(uuid[10:], nodeID[:]) + nodeMu.Unlock() return uuid, nil } |