summaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-12-15 18:10:29 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-12-15 19:01:41 -0500
commit7784f1a905cad5ad805195dcc3cba23ff206501c (patch)
treea40897217eb0a87cbacc56c100cc137ff70bd8fa /sway/commands
parentHandle IPC server allocation failures (diff)
downloadsway-7784f1a905cad5ad805195dcc3cba23ff206501c.tar.gz
sway-7784f1a905cad5ad805195dcc3cba23ff206501c.tar.zst
sway-7784f1a905cad5ad805195dcc3cba23ff206501c.zip
Handle allocation failures in security code
Note that such errors are generally going to be fatal
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/permit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/commands/permit.c b/sway/commands/permit.c
index 7a25e4ce..dee246d7 100644
--- a/sway/commands/permit.c
+++ b/sway/commands/permit.c
@@ -50,6 +50,9 @@ static struct feature_policy *get_policy(const char *name) {
50 } 50 }
51 if (!policy) { 51 if (!policy) {
52 policy = alloc_feature_policy(name); 52 policy = alloc_feature_policy(name);
53 if (!policy) {
54 sway_abort("Unable to allocate security policy");
55 }
53 list_add(config->feature_policies, policy); 56 list_add(config->feature_policies, policy);
54 } 57 }
55 return policy; 58 return policy;