mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	config_commands_command: make alloc failure check more permanent
policy is accessed again later Found through static analysis
This commit is contained in:
		
							parent
							
								
									5690bea227
								
							
						
					
					
						commit
						557a14a6fe
					
				
					 1 changed files with 6 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -428,8 +428,7 @@ struct cmd_results *config_commands_command(char *exec) {
 | 
			
		|||
 | 
			
		||||
	struct cmd_handler *handler = find_handler(cmd, NULL, 0);
 | 
			
		||||
	if (!handler && strcmp(cmd, "*") != 0) {
 | 
			
		||||
		char *input = cmd ? cmd : "(empty)";
 | 
			
		||||
		results = cmd_results_new(CMD_INVALID, input, "Unknown/invalid command");
 | 
			
		||||
		results = cmd_results_new(CMD_INVALID, cmd, "Unknown/invalid command");
 | 
			
		||||
		goto cleanup;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -471,10 +470,12 @@ struct cmd_results *config_commands_command(char *exec) {
 | 
			
		|||
	}
 | 
			
		||||
	if (!policy) {
 | 
			
		||||
		policy = alloc_command_policy(cmd);
 | 
			
		||||
		sway_assert(policy, "Unable to allocate security policy");
 | 
			
		||||
		if (policy) {
 | 
			
		||||
			list_add(config->command_policies, policy);
 | 
			
		||||
		if (!sway_assert(policy, "Unable to allocate security policy")) {
 | 
			
		||||
			results = cmd_results_new(CMD_INVALID, cmd,
 | 
			
		||||
					"Unable to allocate memory");
 | 
			
		||||
			goto cleanup;
 | 
			
		||||
		}
 | 
			
		||||
		list_add(config->command_policies, policy);
 | 
			
		||||
	}
 | 
			
		||||
	policy->context = context;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue