aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-27 17:47:41 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-27 17:47:41 +1000
commit8773ed39701748ba5500b4698d028795aa6e812e (patch)
tree171f771887ad7bba4cb454031451ae37ebdbae13 /include/sway/tree/container.h
parentRemove transaction_add_damage (diff)
downloadsway-8773ed39701748ba5500b4698d028795aa6e812e.tar.gz
sway-8773ed39701748ba5500b4698d028795aa6e812e.tar.zst
sway-8773ed39701748ba5500b4698d028795aa6e812e.zip
Fix memleak in container_get_box
Rather than allocate a structure and expect callers to free it, take a pointer to an existing struct as an argument. This function is no longer called anywhere though.
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 7e78cbef..728daa84 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -295,6 +295,6 @@ bool container_is_floating(struct sway_container *container);
295/** 295/**
296 * Get a container's box in layout coordinates. 296 * Get a container's box in layout coordinates.
297 */ 297 */
298struct wlr_box *container_get_box(struct sway_container *container); 298void container_get_box(struct sway_container *container, struct wlr_box *box);
299 299
300#endif 300#endif