From 7d8a84b58790454308bcac114d3f28a09c28928c Mon Sep 17 00:00:00 2001 From: Mykyta Holubakha Date: Sat, 1 Jul 2017 20:30:38 +0300 Subject: Do not add empty policies Policy allocation failure is non-fatal --- sway/commands.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sway/commands.c') diff --git a/sway/commands.c b/sway/commands.c index 14be656a..d55d9a96 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -608,10 +608,10 @@ struct cmd_results *config_commands_command(char *exec) { } if (!policy) { policy = alloc_command_policy(cmd); - if (!policy) { - sway_abort("Unable to allocate security policy"); + sway_assert(policy, "Unable to allocate security policy"); + if (policy) { + list_add(config->command_policies, policy); } - list_add(config->command_policies, policy); } policy->context = context; -- cgit v1.2.3-54-g00ecf