diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-04-11 21:08:44 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-04-11 21:08:44 -0400 |
commit | 9412dc7edf29073f069e48a266910ac3c4436170 (patch) | |
tree | 515f35605dc060fe8ce0ce4986b674acf4eef30e /sway/container.c | |
parent | 3b5a8cb40d4ab07aa9a72ba87660e4b9801afa21 (diff) | |
parent | 91d2a505b28f44f5d0fbb7fd63e9f56e74bf12eb (diff) | |
download | sway-9412dc7edf29073f069e48a266910ac3c4436170.tar.xz |
Merge pull request #582 from cl91/fix-memory-leaks
Plug two memory leaks
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 1 |
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) { if (cont->bg_pid != 0) { terminate_swaybg(cont->bg_pid); } + free(cont->border); free(cont); } |