mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 21:05:58 +01:00
output-layout: avoid uninitialized wlr_box fields
This commit is contained in:
parent
4462f5dcb3
commit
2ea80eb115
1 changed files with 2 additions and 2 deletions
|
@ -365,6 +365,8 @@ void wlr_output_layout_closest_point(struct wlr_output_layout *layout,
|
||||||
|
|
||||||
void wlr_output_layout_get_box(struct wlr_output_layout *layout,
|
void wlr_output_layout_get_box(struct wlr_output_layout *layout,
|
||||||
struct wlr_output *reference, struct wlr_box *dest_box) {
|
struct wlr_output *reference, struct wlr_box *dest_box) {
|
||||||
|
memset(dest_box, 0, sizeof(*dest_box));
|
||||||
|
|
||||||
struct wlr_output_layout_output *l_output;
|
struct wlr_output_layout_output *l_output;
|
||||||
if (reference) {
|
if (reference) {
|
||||||
// output extents
|
// output extents
|
||||||
|
@ -372,8 +374,6 @@ void wlr_output_layout_get_box(struct wlr_output_layout *layout,
|
||||||
|
|
||||||
if (l_output) {
|
if (l_output) {
|
||||||
output_layout_output_get_box(l_output, dest_box);
|
output_layout_output_get_box(l_output, dest_box);
|
||||||
} else {
|
|
||||||
dest_box->width = dest_box->height = 0;
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// layout extents
|
// layout extents
|
||||||
|
|
Loading…
Reference in a new issue