mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Merge pull request #1912 from Hello71/patch-1
Check for NULL in container_update_title
This commit is contained in:
		
						commit
						fbcbbb976c
					
				
					 1 changed files with 6 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -348,7 +348,7 @@ struct sway_container *container_view_create(struct sway_container *sibling,
 | 
			
		|||
		swayc, title, sibling, sibling ? sibling->type : 0, sibling->name);
 | 
			
		||||
	// Setup values
 | 
			
		||||
	swayc->sway_view = sway_view;
 | 
			
		||||
	container_update_title(swayc, title ? title : "");
 | 
			
		||||
	container_update_title(swayc, title);
 | 
			
		||||
	swayc->width = 0;
 | 
			
		||||
	swayc->height = 0;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -660,9 +660,14 @@ static void container_notify_child_title_changed(
 | 
			
		|||
 | 
			
		||||
void container_update_title(struct sway_container *container,
 | 
			
		||||
		const char *new_title) {
 | 
			
		||||
	if (!new_title) {
 | 
			
		||||
		new_title = "";
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (container->name && strcmp(container->name, new_title) == 0) {
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (container->name) {
 | 
			
		||||
		free(container->name);
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue