diff options
author | lbonn <[email protected]> | 2019-09-07 23:41:33 +0200 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2019-11-01 12:18:09 -0400 |
commit | a6307aed0089a35b5594f910c9604262b46832e6 (patch) | |
tree | 4cab6ca6b96b6cabfe224996fc3e8747e4e51272 /sway/main.c | |
parent | 32caabc7a172552a35358d7cde89790ebfa96d48 (diff) |
Fix various memory leaks
Found with clang-tidy
Diffstat (limited to 'sway/main.c')
-rw-r--r-- | sway/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/main.c b/sway/main.c index 177c0aa1..2cc69dfb 100644 --- a/sway/main.c +++ b/sway/main.c @@ -259,6 +259,7 @@ int main(int argc, char **argv) { exit(EXIT_SUCCESS); break; case 'c': // config + free(config_path); config_path = strdup(optarg); break; case 'C': // validate |