diff options
| author | Drew DeVault <[email protected]> | 2016-12-17 13:23:44 -0500 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2016-12-17 13:23:44 -0500 | 
| commit | f04ee0e68d885d7e1101cc88f9a9337202041f1f (patch) | |
| tree | fa4dc296a5f1377867752d320ceef4e4b0178bbf /sway/commands/permit.c | |
| parent | 6c0fc2093641868df28c4087902a040f7fae05d4 (diff) | |
| parent | d859f825d3612492678f5cd6cc6dc1f2647929e1 (diff) | |
Merge pull request #995 from SirCmpwn/memory-use
Handle allocation failures
Diffstat (limited to 'sway/commands/permit.c')
| -rw-r--r-- | sway/commands/permit.c | 3 | 
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) {  	}  	if (!policy) {  		policy = alloc_feature_policy(name); +		if (!policy) { +			sway_abort("Unable to allocate security policy"); +		}  		list_add(config->feature_policies, policy);  	}  	return policy; | 
