mirror of https://github.com/jackc/pgx.git
Apply UUID string length check before parsing
parent
bd37aaaa6a
commit
b1a17cf284
|
@ -87,6 +87,9 @@ func (src *UUID) AssignTo(dst interface{}) error {
|
|||
|
||||
// parseUUID converts a string UUID in standard form to a byte array.
|
||||
func parseUUID(src string) (dst [16]byte, err error) {
|
||||
if len(src) < 36 {
|
||||
return dst, errors.Errorf("cannot parse UUID %v", src)
|
||||
}
|
||||
src = src[0:8] + src[9:13] + src[14:18] + src[19:23] + src[24:]
|
||||
buf, err := hex.DecodeString(src)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue