mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
x11: XMaxRequestSize returns 4-byte units
XMaxRequestSize/XMaxExtendedRequestSize are documented to return the maximum size in 4-byte units, whereas we are comparing this to byte lenghts. We can afford 4x the data here. Since I don't know the payload size of the XChangeProperty request, be generous and allot 400 bytes for it, we have some to spare. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1198
This commit is contained in:
parent
f15ce01e2b
commit
06d67b6abf
@ -110,7 +110,7 @@ get_max_request_size (MetaX11Display *display)
|
|||||||
if (size <= 0)
|
if (size <= 0)
|
||||||
size = XMaxRequestSize (display->xdisplay);
|
size = XMaxRequestSize (display->xdisplay);
|
||||||
|
|
||||||
return size - 100;
|
return (size - 100) * 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
Loading…
Reference in New Issue
Block a user