summaryrefslogtreecommitdiffstats
path: root/sway/container.c
diff options
context:
space:
mode:
authorLibravatar Chang Liu <cliu712@aucklanduni.ac.nz>2016-04-12 11:11:26 +1200
committerLibravatar Chang Liu <cliu712@aucklanduni.ac.nz>2016-04-12 12:35:50 +1200
commit91d2a505b28f44f5d0fbb7fd63e9f56e74bf12eb (patch)
tree515f35605dc060fe8ce0ce4986b674acf4eef30e /sway/container.c
parentMerge pull request #580 from mikkeloscar/handle-realloc-fail (diff)
downloadsway-91d2a505b28f44f5d0fbb7fd63e9f56e74bf12eb.tar.gz
sway-91d2a505b28f44f5d0fbb7fd63e9f56e74bf12eb.tar.zst
sway-91d2a505b28f44f5d0fbb7fd63e9f56e74bf12eb.zip
Plug two memory leaks
Plug two memory leaks introduced in the border drawing code.
Diffstat (limited to 'sway/container.c')
-rw-r--r--sway/container.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c
index 6dfc608d..a4b2d1c2 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -64,6 +64,7 @@ static void free_swayc(swayc_t *cont) {
64 if (cont->bg_pid != 0) { 64 if (cont->bg_pid != 0) {
65 terminate_swaybg(cont->bg_pid); 65 terminate_swaybg(cont->bg_pid);
66 } 66 }
67 free(cont->border);
67 free(cont); 68 free(cont);
68} 69}
69 70