diff options
author | Brian Ashworth <RedSoxFan@users.noreply.github.com> | 2018-11-15 00:38:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 00:38:42 -0500 |
commit | 0451acfb751fe2b90a9d895df50294cce4bdf9ad (patch) | |
tree | 18146c1012ece40cd5f5b18e5390a410f57ead71 /sway/decoration.c | |
parent | 932d6ee0d4684a78819954957cce3761097ff4bc (diff) | |
parent | 2115ebe39dceb5b9b7a8457eeb48ab903a091999 (diff) |
Merge pull request #3128 from RyanDwyer/fix-unmap-crash
Fix double free when unmapping any view
Diffstat (limited to 'sway/decoration.c')
-rw-r--r-- | sway/decoration.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sway/decoration.c b/sway/decoration.c index a6007c2e..849fa89c 100644 --- a/sway/decoration.c +++ b/sway/decoration.c @@ -13,7 +13,6 @@ static void server_decoration_handle_destroy(struct wl_listener *listener, wl_list_remove(&deco->destroy.link); wl_list_remove(&deco->mode.link); wl_list_remove(&deco->link); - free(deco->wlr_server_decoration); free(deco); } |