From 0ece17c717eea8e5a4e1a02a9d0e9ba2fae075bf Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 29 Apr 2016 23:27:59 +0100 Subject: sway/workspace.c: Cleanup some un-free'd memory --- sway/workspace.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sway/workspace.c b/sway/workspace.c index 90edc6e9..17b56416 100644 --- a/sway/workspace.c +++ b/sway/workspace.c @@ -79,12 +79,14 @@ char *workspace_next_name(const char *output_name) { strcmp(_target, "current") == 0) { free(_target); + free(dup); continue; } // Make sure that the workspace doesn't already exist if (workspace_by_name(_target)) { free(_target); + free(dup); continue; } @@ -92,6 +94,7 @@ char *workspace_next_name(const char *output_name) { // output if (!workspace_valid_on_output(output_name, _target)) { free(_target); + free(dup); continue; } @@ -99,6 +102,8 @@ char *workspace_next_name(const char *output_name) { order = binding->order; target = _target; sway_log(L_DEBUG, "Workspace: Found free name %s", _target); + free(dup); + break; } } free(dup); -- cgit v1.2.3-54-g00ecf