diff options
| author | Connor E <38229097+c-edw@users.noreply.github.com> | 2018-11-17 16:11:28 +0000 |
|---|---|---|
| committer | Connor E <38229097+c-edw@users.noreply.github.com> | 2018-11-17 16:11:28 +0000 |
| commit | 4bd46fb079fb5a32ee6eb2b297de273b261a9c71 (patch) | |
| tree | 81dfd95a863ae17de78a6c69a14dd5698c6de862 /swaybar/bar.c | |
| parent | 001ec1f3fdd700c23fb6dc91018697130af225ff (diff) | |
Implement strip_workspace_name.
Diffstat (limited to 'swaybar/bar.c')
| -rw-r--r-- | swaybar/bar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 08c386a7..2178f542 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -31,6 +31,7 @@ void free_workspaces(struct wl_list *list) { wl_list_for_each_safe(ws, tmp, list, link) { wl_list_remove(&ws->link); free(ws->name); + free(ws->label); free(ws); } } |
