summaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2016-12-15 18:10:29 -0500
committerDrew DeVault <[email protected]>2016-12-15 19:01:41 -0500
commit7784f1a905cad5ad805195dcc3cba23ff206501c (patch)
treea40897217eb0a87cbacc56c100cc137ff70bd8fa /sway/commands.c
parent31b002b6d5ca13be76c1991e50457766556b3c55 (diff)
Handle allocation failures in security code
Note that such errors are generally going to be fatal
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 8d199467..c15cb00a 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -575,6 +575,9 @@ struct cmd_results *config_commands_command(char *exec) {
}
if (!policy) {
policy = alloc_command_policy(cmd);
+ if (!policy) {
+ sway_abort("Unable to allocate security policy");
+ }
list_add(config->command_policies, policy);
}
policy->context = context;