aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-07-02 09:06:02 +0100
committerLibravatar GitHub <noreply@github.com>2018-07-02 09:06:02 +0100
commitdefb73596fedec846280b9155bb3e9d210da49bb (patch)
tree0a3e6c9e5efaf0e8bb5f01ab7691350cd063ebcb /sway/commands.c
parentMerge pull request #2190 from emersion/screencopy (diff)
parentswaylock daemonize: fix leak of devnull fd (diff)
downloadsway-defb73596fedec846280b9155bb3e9d210da49bb.tar.gz
sway-defb73596fedec846280b9155bb3e9d210da49bb.tar.zst
sway-defb73596fedec846280b9155bb3e9d210da49bb.zip
Merge pull request #2186 from martinetd/static-analysis
Static analysis fixes
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 5b20857a..5b67e1ec 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -428,8 +428,7 @@ struct cmd_results *config_commands_command(char *exec) {
428 428
429 struct cmd_handler *handler = find_handler(cmd, NULL, 0); 429 struct cmd_handler *handler = find_handler(cmd, NULL, 0);
430 if (!handler && strcmp(cmd, "*") != 0) { 430 if (!handler && strcmp(cmd, "*") != 0) {
431 char *input = cmd ? cmd : "(empty)"; 431 results = cmd_results_new(CMD_INVALID, cmd, "Unknown/invalid command");
432 results = cmd_results_new(CMD_INVALID, input, "Unknown/invalid command");
433 goto cleanup; 432 goto cleanup;
434 } 433 }
435 434
@@ -471,10 +470,12 @@ struct cmd_results *config_commands_command(char *exec) {
471 } 470 }
472 if (!policy) { 471 if (!policy) {
473 policy = alloc_command_policy(cmd); 472 policy = alloc_command_policy(cmd);
474 sway_assert(policy, "Unable to allocate security policy"); 473 if (!sway_assert(policy, "Unable to allocate security policy")) {
475 if (policy) { 474 results = cmd_results_new(CMD_INVALID, cmd,
476 list_add(config->command_policies, policy); 475 "Unable to allocate memory");
476 goto cleanup;
477 } 477 }
478 list_add(config->command_policies, policy);
478 } 479 }
479 policy->context = context; 480 policy->context = context;
480 481