diff options
author | Zandr Martin <zandrmartin@gmail.com> | 2016-06-11 17:10:01 -0500 |
---|---|---|
committer | Zandr Martin <zandrmartin@gmail.com> | 2016-06-11 17:10:01 -0500 |
commit | 54914260ed38ef4975cdb53ec93ff8a3aab3adf5 (patch) | |
tree | 978577aae4b59ae33012fb8c181ab61b82279a97 /sway | |
parent | 889618d3eeb5786df45e1e4885debe610932fc31 (diff) | |
parent | f1268053a62a83c0169b61451d01649a3f3185e3 (diff) | |
download | sway-54914260ed38ef4975cdb53ec93ff8a3aab3adf5.tar.xz |
Merge branch 'master' of git://github.com/SirCmpwn/sway into set-size-command
Diffstat (limited to 'sway')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 819a70ce..766d2b23 100644 --- a/sway/config.c +++ b/sway/config.c @@ -101,6 +101,7 @@ static void pid_workspace_cleanup() { pw = config->pid_workspaces->items[i]; if (difftime(ts.tv_sec, *pw->time_added) >= PID_WORKSPACE_TIMEOUT) { + free_pid_workspace(config->pid_workspaces->items[i]); list_del(config->pid_workspaces, i); } } @@ -126,6 +127,7 @@ void pid_workspace_add(struct pid_workspace *pw) { list_pw = config->pid_workspaces->items[i]; if (pw->pid == list_pw->pid) { + free_pid_workspace(config->pid_workspaces->items[i]); list_del(config->pid_workspaces, i); } } |