aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/pborman/uuid/sql.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pborman/uuid/sql.go')
-rw-r--r--vendor/github.com/pborman/uuid/sql.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/github.com/pborman/uuid/sql.go b/vendor/github.com/pborman/uuid/sql.go
index d015bfd..929c384 100644
--- a/vendor/github.com/pborman/uuid/sql.go
+++ b/vendor/github.com/pborman/uuid/sql.go
@@ -40,7 +40,9 @@ func (uuid *UUID) Scan(src interface{}) error {
// assumes a simple slice of bytes if 16 bytes
// otherwise attempts to parse
if len(b) == 16 {
- *uuid = UUID(b)
+ parsed := make([]byte, 16)
+ copy(parsed, b)
+ *uuid = UUID(parsed)
} else {
u := Parse(string(b))