Merge branch 'th/guuid-parse-shift' into 'master'

guuid: fix shift operation to parse hex string in uuid_parse_string()

See merge request GNOME/glib!2080
This commit is contained in:
Philip Withnall 2021-05-03 13:34:08 +00:00
commit 327f9e20e8

View File

@ -113,7 +113,7 @@ uuid_parse_string (const gchar *str,
if (hi == -1 || lo == -1)
return FALSE;
bytes[i++] = hi << 8 | lo;
bytes[i++] = hi << 4 | lo;
}
if (uuid != NULL)