mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
output: correctly handle outputs without a test() impl
This fixes a crash when calling wlr_output_test() on a headless output. Closes: https://github.com/swaywm/sway/issues/6213
This commit is contained in:
parent
8e375ae340
commit
6622cd3277
1 changed files with 3 additions and 0 deletions
|
@ -580,6 +580,9 @@ bool wlr_output_test(struct wlr_output *output) {
|
||||||
if (!output_basic_test(output)) {
|
if (!output_basic_test(output)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (!output->impl->test) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return output->impl->test(output);
|
return output->impl->test(output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue