diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-07-01 14:46:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-01 14:46:21 -0400 |
commit | f745a3b3ef0b575d9a3ea802c338a003b0cc6af5 (patch) | |
tree | af35993f88080f41b9e2dddb69a20d5152a088ed /sway/security.c | |
parent | fe763991d4865bffaafcd3ff15ecede6a9daa6ae (diff) | |
parent | 7d8a84b58790454308bcac114d3f28a09c28928c (diff) |
Merge pull request #1255 from Hummer12007/policy
Prevent null pointer dereferences with policy allocation failure
Diffstat (limited to 'sway/security.c')
-rw-r--r-- | sway/security.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/security.c b/sway/security.c index 92de06c1..fcd70f9d 100644 --- a/sway/security.c +++ b/sway/security.c @@ -152,10 +152,10 @@ struct feature_policy *get_feature_policy(const char *name) { } if (!policy) { policy = alloc_feature_policy(name); - if (!policy) { - sway_abort("Unable to allocate security policy"); + sway_assert(policy, "Unable to allocate security policy"); + if (policy) { + list_add(config->feature_policies, policy); } - list_add(config->feature_policies, policy); } return policy; } |