Fix regression in 84a1bc5
				
					
				
			Reported by Jochen Sprickerhof, thanks! Applied patch with minor change (only initialize `i` for XINERAMA).
This commit is contained in:
		
							
								
								
									
										3
									
								
								dmenu.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								dmenu.c
									
									
									
									
									
								
							@ -541,7 +541,7 @@ run(void)
 | 
				
			|||||||
static void
 | 
					static void
 | 
				
			||||||
setup(void)
 | 
					setup(void)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	int x, y, i, j = 0;
 | 
						int x, y, i, j;
 | 
				
			||||||
	unsigned int du;
 | 
						unsigned int du;
 | 
				
			||||||
	XSetWindowAttributes swa;
 | 
						XSetWindowAttributes swa;
 | 
				
			||||||
	XIM xim;
 | 
						XIM xim;
 | 
				
			||||||
@ -565,6 +565,7 @@ setup(void)
 | 
				
			|||||||
	lines = MAX(lines, 0);
 | 
						lines = MAX(lines, 0);
 | 
				
			||||||
	mh = (lines + 1) * bh;
 | 
						mh = (lines + 1) * bh;
 | 
				
			||||||
#ifdef XINERAMA
 | 
					#ifdef XINERAMA
 | 
				
			||||||
 | 
						i = 0;
 | 
				
			||||||
	if (parentwin == root && (info = XineramaQueryScreens(dpy, &n))) {
 | 
						if (parentwin == root && (info = XineramaQueryScreens(dpy, &n))) {
 | 
				
			||||||
		XGetInputFocus(dpy, &w, &di);
 | 
							XGetInputFocus(dpy, &w, &di);
 | 
				
			||||||
		if (mon >= 0 && mon < n)
 | 
							if (mon >= 0 && mon < n)
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user