mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-29 16:05:59 +01:00
Merge pull request #1252 from emersion/fatal-unknown-buffer
buffer: disconnect clients that commit an unknown buffer type
This commit is contained in:
commit
33a3d8a555
1 changed files with 4 additions and 0 deletions
|
@ -87,6 +87,10 @@ struct wlr_buffer *wlr_buffer_create(struct wlr_renderer *renderer,
|
||||||
// the buffer yet.
|
// the buffer yet.
|
||||||
} else {
|
} else {
|
||||||
wlr_log(WLR_ERROR, "Cannot upload texture: unknown buffer type");
|
wlr_log(WLR_ERROR, "Cannot upload texture: unknown buffer type");
|
||||||
|
|
||||||
|
// Instead of just logging the error, also disconnect the client with a
|
||||||
|
// fatal protocol error so that it's clear something went wrong.
|
||||||
|
wl_resource_post_error(resource, 0, "unknown buffer type");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue