mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	buffer: disconnect clients that commit an unknown buffer type
If this happens, something went really wrong and we should do more than just logging an error. See [1]. [1]: https://gitlab.freedesktop.org/wayland/weston/issues/148
This commit is contained in:
		
							parent
							
								
									3693fae0c4
								
							
						
					
					
						commit
						ac28d701c0
					
				
					 1 changed files with 4 additions and 0 deletions
				
			
		| 
						 | 
					@ -87,6 +87,10 @@ struct wlr_buffer *wlr_buffer_create(struct wlr_renderer *renderer,
 | 
				
			||||||
		// the buffer yet.
 | 
							// the buffer yet.
 | 
				
			||||||
	} else {
 | 
						} else {
 | 
				
			||||||
		wlr_log(WLR_ERROR, "Cannot upload texture: unknown buffer type");
 | 
							wlr_log(WLR_ERROR, "Cannot upload texture: unknown buffer type");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							// Instead of just logging the error, also disconnect the client with a
 | 
				
			||||||
 | 
							// fatal protocol error so that it's clear something went wrong.
 | 
				
			||||||
 | 
							wl_resource_post_error(resource, 0, "unknown buffer type");
 | 
				
			||||||
		return NULL;
 | 
							return NULL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue