mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
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:
commit
327f9e20e8
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user