mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
Broadway: Fix shm names
We were sometimes getting zero chars in the name, making them shorter, due to an off-by-zero in the size.
This commit is contained in:
parent
b7a1561fef
commit
c340dfeaf8
@ -506,7 +506,7 @@ make_valid_fs_char (char c)
|
|||||||
{
|
{
|
||||||
char chars[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890";
|
char chars[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890";
|
||||||
|
|
||||||
return chars[c % sizeof (chars)];
|
return chars[c % (sizeof (chars) - 1)];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* name must have at least space for 34 bytes */
|
/* name must have at least space for 34 bytes */
|
||||||
|
Loading…
Reference in New Issue
Block a user