mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Merge pull request #108 from martinetd/realloc_crtcs_index
drm realloc_crtcs: check we found an output
This commit is contained in:
		
						commit
						617be97fa0
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -405,7 +405,7 @@ static void realloc_crtcs(struct wlr_drm_backend *backend,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	memset(possible_crtc, 0, sizeof(possible_crtc));
 | 
						memset(possible_crtc, 0, sizeof(possible_crtc));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	size_t index = 0;
 | 
						ssize_t index = -1;
 | 
				
			||||||
	for (size_t i = 0; i < backend->outputs->length; ++i) {
 | 
						for (size_t i = 0; i < backend->outputs->length; ++i) {
 | 
				
			||||||
		struct wlr_drm_output *o = backend->outputs->items[i];
 | 
							struct wlr_drm_output *o = backend->outputs->items[i];
 | 
				
			||||||
		if (o == output) {
 | 
							if (o == output) {
 | 
				
			||||||
| 
						 | 
					@ -419,6 +419,7 @@ static void realloc_crtcs(struct wlr_drm_backend *backend,
 | 
				
			||||||
		possible_crtc[i] = o->possible_crtc;
 | 
							possible_crtc[i] = o->possible_crtc;
 | 
				
			||||||
		crtc[o->crtc - backend->crtcs] = i;
 | 
							crtc[o->crtc - backend->crtcs] = i;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						assert(index != -1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	possible_crtc[index] = output->possible_crtc;
 | 
						possible_crtc[index] = output->possible_crtc;
 | 
				
			||||||
	match_obj(backend->outputs->length, possible_crtc,
 | 
						match_obj(backend->outputs->length, possible_crtc,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue