diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2024-02-20 20:44:56 +0530 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2024-02-20 20:44:56 +0530 |
| commit | e157fd2601e664403eec8dde1068f693d10934b5 (patch) | |
| tree | c762627fbecb4d1ccea5b2f7ea59c24a2157bb76 | |
| parent | 702fa992becbe77249d4d5c4d7a80fba795665e6 (diff) | |
input/text_input: parent wlr_box may be uninitialized
| -rw-r--r-- | sway/input/text_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/text_input.c b/sway/input/text_input.c index d80e34ac..ad760a6f 100644 --- a/sway/input/text_input.c +++ b/sway/input/text_input.c @@ -300,7 +300,7 @@ static void input_popup_update(struct sway_input_popup *popup) { struct wlr_box cursor_area = text_input->input->current.cursor_rectangle; struct wlr_box output_box; - struct wlr_box parent; + struct wlr_box parent = {0}; struct wlr_layer_surface_v1 *layer_surface = wlr_layer_surface_v1_try_from_wlr_surface(focused_surface); struct wlr_scene_tree *relative_parent; |
