mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
xwayland/selection: explicitly bail if first write to Wayland fd fails
If `xwm_data_source_write` failed, it's failed permanently. In fact, a failing `xwm_data_source_write` sets `transfer->property_reply` to null as part of its error handling. Instead of relying on an indirect check (whether `transfer->property_reply` is still non-null), explicitly use the return value from `xwm_data_source_write`.
This commit is contained in:
parent
40b2e7669a
commit
10a2d57055
1 changed files with 6 additions and 3 deletions
|
@ -61,9 +61,12 @@ static void xwm_write_property(struct wlr_xwm_selection_transfer *transfer,
|
|||
transfer->property_start = 0;
|
||||
transfer->property_reply = reply;
|
||||
|
||||
xwm_data_source_write(transfer->wl_client_fd, WL_EVENT_WRITABLE, transfer);
|
||||
|
||||
if (transfer->property_reply != NULL) {
|
||||
bool wl_client_finished_consuming =
|
||||
!xwm_data_source_write(transfer->wl_client_fd, WL_EVENT_WRITABLE, transfer);
|
||||
if (!wl_client_finished_consuming) {
|
||||
// Wrote out part of the property to the Wayland client, but the client was
|
||||
// unable to accept all of it. Schedule an event to asynchronously complete
|
||||
// the transfer.
|
||||
struct wl_event_loop *loop =
|
||||
wl_display_get_event_loop(xwm->xwayland->wl_display);
|
||||
transfer->event_source = wl_event_loop_add_fd(loop,
|
||||
|
|
Loading…
Reference in a new issue