diff options
author | Drew DeVault <[email protected]> | 2018-07-06 08:43:33 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-06 08:43:33 -0700 |
commit | 817e847749240a0c04756c37c88dc554efc56c9e (patch) | |
tree | ef2a716f8ea06ce8bdc63d1a682901b24e5bfcf0 /sway/tree/view.c | |
parent | 55c54bb63b82ee75e1893b48b3ce18f7317c6199 (diff) | |
parent | b3c55dd909b070625c9bfcebcb89cb8463e2ffc9 (diff) |
Merge pull request #2206 from martinetd/leaks
Fix a bunch of leaks
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r-- | sway/tree/view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c index 6b4daa82..bca8ef8a 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -514,7 +514,7 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) { if (container_is_floating(focus)) { focus = focus->parent->parent; } - free(criterias); + list_free(criterias); cont = container_view_create(focus, view); view->surface = wlr_surface; |