mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	media-session: remove a superfluous NULL check
spa_streq() checks for NULL and (through the same function) so does pw_properties_parse_bool()
This commit is contained in:
		
							parent
							
								
									f288a2b77d
								
							
						
					
					
						commit
						852d6fc4b6
					
				
					 1 changed files with 1 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -490,8 +490,7 @@ static void client_info_changed(struct client *client, const struct pw_client_in
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	is_portal = spa_dict_lookup(props, "pipewire.access.portal.is_portal");
 | 
			
		||||
	if (is_portal != NULL &&
 | 
			
		||||
	    (spa_streq(is_portal, "yes") || pw_properties_parse_bool(is_portal))) {
 | 
			
		||||
	if (spa_streq(is_portal, "yes") || pw_properties_parse_bool(is_portal)) {
 | 
			
		||||
		pw_log_info(NAME " %p: client %d is the portal itself",
 | 
			
		||||
			     impl, client->id);
 | 
			
		||||
		client->is_portal = true;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue