output-layout: avoid uninitialized wlr_box fields

This commit is contained in:
Kirill Primak 2022-08-30 19:19:47 +03:00
parent 4462f5dcb3
commit 2ea80eb115
1 changed files with 2 additions and 2 deletions

View File

@ -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,
struct wlr_output *reference, struct wlr_box *dest_box) {
memset(dest_box, 0, sizeof(*dest_box));
struct wlr_output_layout_output *l_output;
if (reference) {
// output extents
@ -372,8 +374,6 @@ void wlr_output_layout_get_box(struct wlr_output_layout *layout,
if (l_output) {
output_layout_output_get_box(l_output, dest_box);
} else {
dest_box->width = dest_box->height = 0;
}
} else {
// layout extents