mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
wayland: Use read_all() when reading wayland selections
Plain input stream read() calls don't provide hard guarantees about the number of bytes read, but the async method callback sort of relies on bytes being less than requested only when reaching the end of the transmitted data. If that happens mid transfer, that doesn't bode well. This is actually the behavior of g_input_stream_read_all(), so switch to using it.
This commit is contained in:
parent
61bc1a7d6f
commit
006cdac531
@ -689,9 +689,8 @@ wayland_data_read_cb (GObject *object,
|
||||
GError *error = NULL;
|
||||
gsize bytes_read;
|
||||
|
||||
bytes_read = g_input_stream_read_finish (G_INPUT_STREAM (object),
|
||||
res, &error);
|
||||
if (error)
|
||||
if (!g_input_stream_read_all_finish (G_INPUT_STREAM (object),
|
||||
res, &bytes_read, &error))
|
||||
{
|
||||
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
|
||||
{
|
||||
@ -762,10 +761,10 @@ wayland_selection_data_read (MetaSelectionBridge *selection)
|
||||
{
|
||||
WaylandSelectionData *data = selection->wayland_selection;
|
||||
|
||||
g_input_stream_read_async (data->stream, data->buffer,
|
||||
INCR_CHUNK_SIZE, G_PRIORITY_DEFAULT,
|
||||
data->cancellable,
|
||||
wayland_data_read_cb, selection);
|
||||
g_input_stream_read_all_async (data->stream, data->buffer,
|
||||
INCR_CHUNK_SIZE, G_PRIORITY_DEFAULT,
|
||||
data->cancellable,
|
||||
wayland_data_read_cb, selection);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user