mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-03 07:53:39 +02: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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user