mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	backend/drm: fix segfault in page_flip_handler
Since 5b1b43c68c ("backend/drm: make wlr_drm_plane.{pending,queued,current}_fb
pointers"), current_fb can be NULL if there's no buffer. If current_fb
is not NULL, current_fb->wlr_buf is guaranteed to not be NULL.
Closes: https://github.com/swaywm/wlroots/issues/2634
			
			
This commit is contained in:
		
							parent
							
								
									3f7e0cf5f0
								
							
						
					
					
						commit
						5d054258af
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1484,7 +1484,7 @@ static void page_flip_handler(int fd, unsigned seq,
 | 
			
		|||
	 * data between the GPUs, even if we were using the direct scanout
 | 
			
		||||
	 * interface.
 | 
			
		||||
	 */
 | 
			
		||||
	if (!drm->parent && plane->current_fb->wlr_buf &&
 | 
			
		||||
	if (!drm->parent && plane->current_fb &&
 | 
			
		||||
			wlr_client_buffer_get(plane->current_fb->wlr_buf)) {
 | 
			
		||||
		present_flags |= WLR_OUTPUT_PRESENT_ZERO_COPY;
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue