aboutsummaryrefslogtreecommitdiffstats
path: root/sway/decoration.c
diff options
context:
space:
mode:
authorLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2018-11-13 13:45:01 +0000
committerLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2018-11-13 13:45:01 +0000
commitb5d95f264d5b08f6228e05be680ee36fc06ca6d6 (patch)
treeb26a13cd9d0a8bc52872a930211aef029f5c0dbc /sway/decoration.c
parentMerge pull request #3113 from RedSoxFan/fix-ws-auto-back-and-forth (diff)
downloadsway-b5d95f264d5b08f6228e05be680ee36fc06ca6d6.tar.gz
sway-b5d95f264d5b08f6228e05be680ee36fc06ca6d6.tar.zst
sway-b5d95f264d5b08f6228e05be680ee36fc06ca6d6.zip
Add some missing frees.
Diffstat (limited to 'sway/decoration.c')
-rw-r--r--sway/decoration.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/decoration.c b/sway/decoration.c
index 849fa89c..a6007c2e 100644
--- a/sway/decoration.c
+++ b/sway/decoration.c
@@ -13,6 +13,7 @@ static void server_decoration_handle_destroy(struct wl_listener *listener,
13 wl_list_remove(&deco->destroy.link); 13 wl_list_remove(&deco->destroy.link);
14 wl_list_remove(&deco->mode.link); 14 wl_list_remove(&deco->mode.link);
15 wl_list_remove(&deco->link); 15 wl_list_remove(&deco->link);
16 free(deco->wlr_server_decoration);
16 free(deco); 17 free(deco);
17} 18}
18 19