mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Do not add empty policies
Policy allocation failure is non-fatal
This commit is contained in:
parent
4f905ecb96
commit
7d8a84b587
2 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue