fix segfault if parent->mon is unset
This commit is contained in:
		
				
					committed by
					
						
						Leonardo Hernández
					
				
			
			
				
	
			
			
			
						parent
						
							7eee0a8229
						
					
				
				
					commit
					9d2eb8483b
				
			
							
								
								
									
										3
									
								
								dwl.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								dwl.c
									
									
									
									
									
								
							@@ -1436,7 +1436,8 @@ mapnotify(struct wl_listener *listener, void *data)
 | 
				
			|||||||
		/* Set the same monitor and tags than its parent */
 | 
							/* Set the same monitor and tags than its parent */
 | 
				
			||||||
		c->isfloating = 1;
 | 
							c->isfloating = 1;
 | 
				
			||||||
		wlr_scene_node_reparent(c->scene, layers[LyrFloat]);
 | 
							wlr_scene_node_reparent(c->scene, layers[LyrFloat]);
 | 
				
			||||||
		setmon(c, p->mon, p->tags);
 | 
							/* TODO recheck if !p->mon is possible with wlroots 0.16.0 */
 | 
				
			||||||
 | 
							setmon(c, p->mon ? p->mon : selmon, p->tags);
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		applyrules(c);
 | 
							applyrules(c);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user